summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/gdscript/gd_parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/gd_parser.h b/modules/gdscript/gd_parser.h
index 107f1439c0..26955d2b7a 100644
--- a/modules/gdscript/gd_parser.h
+++ b/modules/gdscript/gd_parser.h
@@ -121,8 +121,8 @@ public:
struct BlockNode : public Node {
- ClassNode *parent_class=NULL;
- BlockNode *parent_block=NULL;
+ ClassNode *parent_class;
+ BlockNode *parent_block;
Map<StringName,int> locals;
List<Node*> statements;
Vector<StringName> variables;