We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62aed89 + e6dd1e2 commit 3f68361Copy full SHA for 3f68361
lager/detail/nodes.hpp
@@ -131,7 +131,7 @@ struct notifying_guard_t
131
* Interface for nodes capable of notifying observers.
132
*/
133
template <typename T>
134
-class observable_reader_node
+class observable_reader_node : public reader_node_base
135
{
136
public:
137
using value_type = T;
@@ -186,9 +186,7 @@ class observable_reader_node
186
* functionality for setting values and propagating them to children.
187
188
189
-class reader_node
190
- : public reader_node_base
191
- , public observable_reader_node<T>
+class reader_node : public observable_reader_node<T>
192
193
194
using value_type = typename observable_reader_node<T>::value_type;
0 commit comments