Commit 7e6e92cb authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Added missing ';'.

parent 3a95198c
......@@ -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); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment