aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
diff options
context:
space:
mode:
authorRenaud Guezennec <renaud.guezennec@softbankrobotics.com>2017-11-28 15:48:18 +0100
committerRenaud Guezennec <renaud.guezennec@softbankrobotics.com>2017-11-28 15:48:18 +0100
commitc0c6378cb05de97ecc1ff0be4e66624e6a9bdb3b (patch)
tree5e250db48158f73a9442ca60396c5bb51b787fa4 /node/executionnode.cpp
parent9f08ef2435310b9b6910ac838d3895996a48ec66 (diff)
downloadOneRoll-c0c6378cb05de97ecc1ff0be4e66624e6a9bdb3b.tar.gz
OneRoll-c0c6378cb05de97ecc1ff0be4e66624e6a9bdb3b.zip
-Better indentation
Diffstat (limited to 'node/executionnode.cpp')
-rw-r--r--node/executionnode.cpp20
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()