Replace NULL with nullptr
This commit is contained in:
@ -138,7 +138,7 @@ class VisualScriptExpression : public VisualScriptNode {
|
||||
|
||||
Type type;
|
||||
|
||||
ENode() { next = NULL; }
|
||||
ENode() { next = nullptr; }
|
||||
virtual ~ENode() {
|
||||
if (next) {
|
||||
memdelete(next);
|
||||
|
||||
Reference in New Issue
Block a user