diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-14 17:24:56 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-14 17:24:56 +0000 |
| commit | 2722de65b7e2397c0b968abc4c652711095ec7ca (patch) | |
| tree | 49a6d32999893197566cde6b65263d37e03618e8 /src/tokenizer.c | |
| parent | 8b5e3428a1e569abf763e63e859754e767e107e7 (diff) | |
Prevent `cast` on pointer to union types
Diffstat (limited to 'src/tokenizer.c')
| -rw-r--r-- | src/tokenizer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tokenizer.c b/src/tokenizer.c index fc85fd927..68ab270be 100644 --- a/src/tokenizer.c +++ b/src/tokenizer.c @@ -99,6 +99,8 @@ TOKEN_KIND(Token__KeywordBegin, "_KeywordBegin"), \ TOKEN_KIND(Token_raw_union, "raw_union"), \ TOKEN_KIND(Token_enum, "enum"), \ TOKEN_KIND(Token_vector, "vector"), \ + TOKEN_KIND(Token_static, "static"), \ + TOKEN_KIND(Token_dynamic, "dynamic"), \ TOKEN_KIND(Token_map, "map"), \ TOKEN_KIND(Token_using, "using"), \ TOKEN_KIND(Token_no_alias, "no_alias"), \ |