diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-07-19 14:01:56 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-07-19 14:01:56 +0100 |
| commit | f1ab17ed4ef68a7591f8aa786e3c02d33d038f05 (patch) | |
| tree | fe2313c560196c80fbfb114641fa5364d3bafb57 /src/tokenizer.cpp | |
| parent | 6113164211d5bd010ea324594d69668e5732817d (diff) | |
`type_info_of`; enum_value_to_string and string_to_enum_value
Diffstat (limited to 'src/tokenizer.cpp')
| -rw-r--r-- | src/tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.cpp b/src/tokenizer.cpp index 1b4d290f3..68ecf6178 100644 --- a/src/tokenizer.cpp +++ b/src/tokenizer.cpp @@ -107,7 +107,6 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_macro, "macro"), \ TOKEN_KIND(Token_struct, "struct"), \ TOKEN_KIND(Token_union, "union"), \ - /* TOKEN_KIND(Token_raw_union, "raw_union"), */ \ TOKEN_KIND(Token_enum, "enum"), \ TOKEN_KIND(Token_bit_field, "bit_field"), \ TOKEN_KIND(Token_vector, "vector"), \ @@ -123,6 +122,7 @@ TOKEN_KIND(Token__KeywordBegin, "_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_type_info_of, "type_info_of"), \ TOKEN_KIND(Token_asm, "asm"), \ TOKEN_KIND(Token_yield, "yield"), \ TOKEN_KIND(Token_await, "await"), \ |