diff options
Diffstat (limited to 'node')
| -rw-r--r-- | node/ifnode.cpp | 1 | ||||
| -rw-r--r-- | node/ifnode.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/node/ifnode.cpp b/node/ifnode.cpp index 5543a93..864faf1 100644 --- a/node/ifnode.cpp +++ b/node/ifnode.cpp @@ -21,6 +21,7 @@ #include "result/diceresult.h" IfNode::IfNode() + : m_validator(NULL),m_true(NULL),m_false(NULL) { //m_result = new DiceResult(); } diff --git a/node/ifnode.h b/node/ifnode.h index 56b23fa..6f8bbcf 100644 --- a/node/ifnode.h +++ b/node/ifnode.h @@ -44,7 +44,6 @@ protected: ExecutionNode *getLeafNode(ExecutionNode *node); protected: - DiceResult* m_diceResult; Validator* m_validator; ExecutionNode* m_true; |