Correct ternary if/when parsing

This commit is contained in:
gingerBill
2020-12-06 00:15:35 +00:00
parent 80fead1de5
commit d94414b0f4
3 changed files with 14 additions and 44 deletions
-12
View File
@@ -133,7 +133,6 @@ Token_Kind :: enum u32 {
Defer,
Return,
Proc,
Macro,
Struct,
Union,
Enum,
@@ -150,11 +149,6 @@ Token_Kind :: enum u32 {
Inline,
No_Inline,
Context,
Size_Of,
Align_Of,
Offset_Of,
Type_Of,
Const,
B_Keyword_End,
COUNT,
@@ -268,7 +262,6 @@ tokens := [Token_Kind.COUNT]string {
"defer",
"return",
"proc",
"macro",
"struct",
"union",
"enum",
@@ -285,11 +278,6 @@ tokens := [Token_Kind.COUNT]string {
"inline",
"no_inline",
"context",
"size_of",
"align_of",
"offset_of",
"type_of",
"const",
"",
};