d'oh, missed a ;

This commit is contained in:
Bill Currie 2002-05-01 21:42:29 +00:00
parent 962dc8e46e
commit 067359b39d

View file

@ -158,7 +158,7 @@ defs
;
def
: type { current_type = $1} def_list
: type { current_type = $1; } def_list
| STRUCT NAME
{ struct_type = new_struct ($2); } '=' '{' struct_defs '}'
| ENUM '{' enum_list opt_comma '}'