1313#include " react/graph/ConversionNodes.h"
1414
1515// //////////////////////////////////////////////////////////////////////////////////////
16- REACT_BEGIN_
16+ REACT_BEGIN
1717
1818// //////////////////////////////////////////////////////////////////////////////////////
1919// / Fold
@@ -30,7 +30,7 @@ inline auto Fold(V&& init, const REvents<D,E>& events, F&& func)
3030 -> RSignal<D,S>
3131{
3232 return RSignal<D,S>(
33- std::make_shared<REACT_IMPL_ ::FoldNode<D,S,E>>(
33+ std::make_shared<REACT_IMPL ::FoldNode<D,S,E>>(
3434 std::forward<V>(init), events.GetPtr (), std::forward<F>(func), false ));
3535}
3636
@@ -49,7 +49,7 @@ inline auto Iterate(V&& init, const REvents<D,E>& events, F&& func)
4949 -> RSignal<D,S>
5050{
5151 return RSignal<D,S>(
52- std::make_shared<REACT_IMPL_ ::IterateNode<D,S,E>>(
52+ std::make_shared<REACT_IMPL ::IterateNode<D,S,E>>(
5353 std::forward<V>(init), events.GetPtr (), std::forward<F>(func), false ));
5454}
5555
@@ -66,7 +66,7 @@ inline auto Hold(V&& init, const REvents<D,T>& events)
6666 -> RSignal<D,T>
6767{
6868 return RSignal<D,T>(
69- std::make_shared<REACT_IMPL_ ::HoldNode<D,T>>(
69+ std::make_shared<REACT_IMPL ::HoldNode<D,T>>(
7070 std::forward<V>(init), events.GetPtr (), false ));
7171}
7272
@@ -83,7 +83,7 @@ inline auto Snapshot(const RSignal<D,S>& target, const REvents<D,E>& trigger)
8383 -> RSignal<D,S>
8484{
8585 return RSignal<D,S>(
86- std::make_shared<REACT_IMPL_ ::SnapshotNode<D,S,E>>(
86+ std::make_shared<REACT_IMPL ::SnapshotNode<D,S,E>>(
8787 target.GetPtr (), trigger.GetPtr (), false ));
8888}
8989
@@ -112,7 +112,7 @@ inline auto Monitor(const RSignal<D,S>& target)
112112 -> REvents<D,S>
113113{
114114 return REvents<D,S>(
115- std::make_shared<REACT_IMPL_ ::MonitorNode<D, S>>(
115+ std::make_shared<REACT_IMPL ::MonitorNode<D, S>>(
116116 target.GetPtr (), false ));
117117}
118118
@@ -161,7 +161,7 @@ inline auto Pulse(const RSignal<D,S>& target, const REvents<D,E>& trigger)
161161 -> REvents<D,S>
162162{
163163 return REvents<D,S>(
164- std::make_shared<REACT_IMPL_ ::PulseNode<D,S,E>>(
164+ std::make_shared<REACT_IMPL ::PulseNode<D,S,E>>(
165165 target.GetPtr (), trigger.GetPtr (), false ));
166166}
167167
@@ -181,7 +181,7 @@ inline auto Flatten(const RSignal<D,THandle<D,TInnerValue>>& node)
181181 -> REvents<D,TInnerValue>
182182{
183183 return REvents<D,TInnerValue>(
184- std::make_shared<REACT_IMPL_ ::EventFlattenNode<D, REvents<D,TInnerValue>, TInnerValue>>(
184+ std::make_shared<REACT_IMPL ::EventFlattenNode<D, REvents<D,TInnerValue>, TInnerValue>>(
185185 node.GetPtr (), node ().GetPtr (), false ));
186186}
187187
@@ -203,4 +203,4 @@ struct Decrementer : public std::unary_function<T,T>
203203 T operator () (T v) { return v-1 ; }
204204};
205205
206- REACT_END_
206+ REACT_END
0 commit comments