Commit 35201ffc authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Add a ; needed by some YACCs.

parent 0761f537
......@@ -353,7 +353,7 @@ pp_expr : tSINT { $$.type = cv_sint; $$.val.si = $1; }
| '+' pp_expr { $$ = $2; }
| '-' pp_expr { UNARY_OP($$, $2, -) }
| '~' pp_expr { UNARY_OP($$, $2, ~) }
| '!' pp_expr { $$.type = cv_sint; $$.val.si = !boolean(&$2) }
| '!' pp_expr { $$.type = cv_sint; $$.val.si = !boolean(&$2); }
| '(' pp_expr ')' { $$ = $2; }
| pp_expr '?' pp_expr ':' pp_expr { $$ = boolean(&$1) ? $3 : $5; }
;
......
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