fix cases where compoundlits are constant/get an entity
[cparser] / token_t.h
index f7a74f9..20c64ad 100644 (file)
--- a/token_t.h
+++ b/token_t.h
 
 typedef enum token_kind_tag_t {
        T_NULL  =  0,
-#define T(mode,x,str,val) T_##x val,
-#define TS(x,str,val) T_##x val,
+#define T(mode,x,str,val) x val,
 #include "tokens.inc"
-#undef TS
 #undef T
        T_LAST_TOKEN
 } token_kind_tag_t;