Added missing ';'.

This commit is contained in:
Eric Pouech 1999-11-21 00:53:59 +00:00 committed by Alexandre Julliard
parent 3a95198c97
commit 7e6e92cbef
1 changed files with 1 additions and 1 deletions

View File

@ -1621,7 +1621,7 @@ raw_elements
e_expr : /* Empty */ { $$ = 0; }
| expr { $$ = new_int($1); }
;
expr : xpr { $$ = ($1) }
expr : xpr { $$ = ($1); }
;
xpr : xpr '+' xpr { $$ = ($1) + ($3); }