diff options
| author | 2017-11-28 15:48:18 +0100 | |
|---|---|---|
| committer | 2017-11-28 15:48:18 +0100 | |
| commit | c0c6378cb05de97ecc1ff0be4e66624e6a9bdb3b (patch) | |
| tree | 5e250db48158f73a9442ca60396c5bb51b787fa4 /node/executionnode.cpp | |
| parent | 9f08ef2435310b9b6910ac838d3895996a48ec66 (diff) | |
| download | OneRoll-c0c6378cb05de97ecc1ff0be4e66624e6a9bdb3b.tar.gz OneRoll-c0c6378cb05de97ecc1ff0be4e66624e6a9bdb3b.zip | |
-Better indentation
Diffstat (limited to 'node/executionnode.cpp')
| -rw-r--r-- | node/executionnode.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp index 84aa17c..73272b4 100644 --- a/node/executionnode.cpp +++ b/node/executionnode.cpp @@ -9,16 +9,16 @@ ExecutionNode::ExecutionNode() } ExecutionNode::~ExecutionNode() { - if(nullptr!=m_result) - { - delete m_result; - m_result = nullptr; - } - if(nullptr!=m_nextNode) - { - delete m_nextNode; - m_nextNode = nullptr; - } + if(nullptr!=m_result) + { + delete m_result; + m_result = nullptr; + } + if(nullptr!=m_nextNode) + { + delete m_nextNode; + m_nextNode = nullptr; + } } Result* ExecutionNode::getResult() |