aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/executionnode.cpp')
-rw-r--r--node/executionnode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp
index cf1826d..0f42afa 100644
--- a/node/executionnode.cpp
+++ b/node/executionnode.cpp
@@ -1,7 +1,7 @@
#include "executionnode.h"
ExecutionNode::ExecutionNode()
- : m_nextNode(NULL)
+ : m_nextNode(NULL),m_result(NULL)
{
}
@@ -10,9 +10,9 @@ ExecutionNode::~ExecutionNode()
}
-DiceResult* ExecutionNode::getResult()
+Result* ExecutionNode::getResult()
{
- return &m_result;
+ return m_result;
}
void ExecutionNode::setNextNode(ExecutionNode* node)
{