summaryrefslogtreecommitdiff
path: root/src/parsers/type/union_type.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsers/type/union_type.cpp')
-rw-r--r--src/parsers/type/union_type.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parsers/type/union_type.cpp b/src/parsers/type/union_type.cpp
index c429f66..93e5d96 100644
--- a/src/parsers/type/union_type.cpp
+++ b/src/parsers/type/union_type.cpp
@@ -44,7 +44,8 @@ void parseUnionTypeNode(UnionTypeNode *node)
node->methods = createParseNode(
node,
TYPE_METHODS(node->gccNode),
- "type methods");
+ "type methods",
+ false);
}
}