aboutsummaryrefslogtreecommitdiff
path: root/src/tokenizer.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-02-24 10:30:58 +0000
committergingerBill <bill@gingerbill.org>2019-02-24 10:30:58 +0000
commita0c81c79add95ce7a96b0d943545aa8b6bd71713 (patch)
treea3ddce23e7f5b4bbf37e3769d9aac9fa90240832 /src/tokenizer.cpp
parentcdfaa643ccdc54e0fba3bc43536f33e5ae8debac (diff)
Fix bugs: Array Literals with constant elements; IR printing of raw procedure types
Diffstat (limited to 'src/tokenizer.cpp')
-rw-r--r--src/tokenizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp
index 11fae7120..d7a39e824 100644
--- a/src/tokenizer.cpp
+++ b/src/tokenizer.cpp
@@ -100,7 +100,6 @@ TOKEN_KIND(Token__KeywordBegin, ""), \
TOKEN_KIND(Token_defer, "defer"), \
TOKEN_KIND(Token_return, "return"), \
TOKEN_KIND(Token_proc, "proc"), \
- TOKEN_KIND(Token_macro, "macro"), \
TOKEN_KIND(Token_struct, "struct"), \
TOKEN_KIND(Token_union, "union"), \
TOKEN_KIND(Token_enum, "enum"), \
@@ -121,6 +120,7 @@ TOKEN_KIND(Token__KeywordBegin, ""), \
TOKEN_KIND(Token_align_of, "align_of"), \
TOKEN_KIND(Token_offset_of, "offset_of"), \
TOKEN_KIND(Token_type_of, "type_of"), \
+ TOKEN_KIND(Token_macro, "macro"), \
TOKEN_KIND(Token_const, "const"), \
TOKEN_KIND(Token_asm, "asm"), \
TOKEN_KIND(Token_yield, "yield"), \