diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-25 16:28:26 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-25 16:28:26 -0700 |
commit | b1854fdfb6b567fa61d544d8080e2acb4cc78dc1 (patch) | |
tree | 5bb3d217c3d94234f7b15f571b72ad59887763a6 /glcpp.h | |
parent | e6fb7827c96451d4a09dfda31979a6b9cb27301e (diff) |
Implement simplified substitution for function-like macro invocation.
This supports function-like macro invocation but without any argument
substitution. This now makes test 11 through 14 pass.
Diffstat (limited to 'glcpp.h')
-rw-r--r-- | glcpp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -51,6 +51,7 @@ typedef union YYSTYPE { int ival; char *str; + string_list_t *string_list; token_t *token; token_list_t *token_list; } YYSTYPE; |