aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-07-29 11:29:20 +0100
committergingerBill <bill@gingerbill.org>2018-07-29 11:29:20 +0100
commit96fc9138d4e238512896a00d59d3f1dca76e5df1 (patch)
tree57a9969f4f9e61110ce051f097b8e4704f37d0b1 /src/parser.hpp
parent6512a3e5f24a3aecb1451f921455a93231412104 (diff)
Do `using Foo :: enum` at the `type_decl` stage
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 30ce225e5..d542a8b7a 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -435,9 +435,9 @@ AST_KIND(_TypeBegin, "", bool) \
Ast *type; \
}) \
AST_KIND(PolyType, "polymorphic type", struct { \
- Token token; \
- Ast *type; \
- Ast *specialization; \
+ Token token; \
+ Ast * type; \
+ Ast * specialization; \
}) \
AST_KIND(ProcType, "procedure type", struct { \
Token token; \