summaryrefslogtreecommitdiff
path: root/src/includes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 00:48:22 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 00:48:22 +0300
commitbfd29fe799c6bae2d1cd993687ae8c477d78d681 (patch)
tree5c36f083cbe2cbf08cfa65c96bf80a764bfee3a6 /src/includes
parent02ed297d531eabef1c381cfc8104d591621bc941 (diff)
downloadparanucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.tar.gz
paranucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.tar.bz2
paranucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.tar.xz
paranucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.zip
Add parsing node NULLPTR_TYPE.
Diffstat (limited to 'src/includes')
-rw-r--r--src/includes/nodeincludes.h1
-rw-r--r--src/includes/nodeshandling.inc1
-rw-r--r--src/includes/parserdefines.inc1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/includes/nodeincludes.h b/src/includes/nodeincludes.h
index cff2090..e6e52ea 100644
--- a/src/includes/nodeincludes.h
+++ b/src/includes/nodeincludes.h
@@ -40,3 +40,4 @@
#include "nodes/expr/cond_expr.h"
#include "nodes/expr/pointerplus_expr.h"
#include "nodes/type/boolean_type.h"
+#include "nodes/type/nullptr_type.h"
diff --git a/src/includes/nodeshandling.inc b/src/includes/nodeshandling.inc
index 9c0e7f9..4aff437 100644
--- a/src/includes/nodeshandling.inc
+++ b/src/includes/nodeshandling.inc
@@ -39,3 +39,4 @@ handleNodeType(NOP_EXPR, NopExpr)
handleNodeType(COND_EXPR, CondExpr)
handleNodeType(POINTER_PLUS_EXPR, PointerPlusExpr)
handleNodeType(BOOLEAN_TYPE, BooleanType)
+handleNodeType(NULLPTR_TYPE, NullPtrType)
diff --git a/src/includes/parserdefines.inc b/src/includes/parserdefines.inc
index 83a23c9..c0ece90 100644
--- a/src/includes/parserdefines.inc
+++ b/src/includes/parserdefines.inc
@@ -39,3 +39,4 @@ parserDefine(NopExpr);
parserDefine(CondExpr);
parserDefine(PointerPlusExpr);
parserDefine(BooleanType);
+parserDefine(NullPtrType);