aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/parenthesesnode.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2017-11-11 18:51:13 +0100
committerRenaud G <renaud@rolisteam.org>2017-11-11 18:51:13 +0100
commitcedc70618afa6826d409a64078ea1a8ede4af06c (patch)
tree3082249db90f6eebe7b23b226c5c688e7f4648a5 /node/parenthesesnode.h
parentf329a8e39beb732b5685eb01476221b461cc50d1 (diff)
downloadOneRoll-cedc70618afa6826d409a64078ea1a8ede4af06c.tar.gz
OneRoll-cedc70618afa6826d409a64078ea1a8ede4af06c.zip
-replace NULL to nullptr.
Diffstat (limited to 'node/parenthesesnode.h')
-rw-r--r--node/parenthesesnode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/parenthesesnode.h b/node/parenthesesnode.h
index 388f6db..5f841ab 100644
--- a/node/parenthesesnode.h
+++ b/node/parenthesesnode.h
@@ -31,7 +31,7 @@ class ParenthesesNode : public ExecutionNode
{
public:
ParenthesesNode();
- virtual void run(ExecutionNode* previous = NULL);
+ virtual void run(ExecutionNode* previous = nullptr);
void setInternelNode(ExecutionNode* node);
virtual QString toString(bool)const;