File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99
1010#pragma once
1111
12- #ifdef REACT_ENABLE_REACTORS
13-
1412#include " react/detail/Defs.h"
1513
1614#include < functional>
@@ -36,7 +34,7 @@ class ReactiveLoop
3634 {
3735 public:
3836 Context (NodeT& node) :
39- node_{ node }
37+ node_ ( node )
4038 {}
4139
4240 template <typename E>
@@ -57,7 +55,7 @@ class ReactiveLoop
5755
5856 template <typename F>
5957 ReactiveLoop (F&& func) :
60- nodePtr_{ new REACT_IMPL ::ReactorNode<D, Context>(std::forward<F>(func)) }
58+ nodePtr_ ( new REACT_IMPL ::ReactorNode<D, Context>(std::forward<F>(func)) )
6159 {
6260 nodePtr_->StartLoop ();
6361 }
@@ -68,6 +66,4 @@ class ReactiveLoop
6866
6967/* *****************************************/ REACT_END /* *****************************************/
7068
71- #endif // REACT_ENABLE_REACTORS
72-
7369#endif // REACT_REACTOR_H_INCLUDED
You can’t perform that action at this time.
0 commit comments