Add a ; needed by some YACCs.

oldstable
Marcus Meissner 2000-05-30 20:05:30 +00:00 committed by Alexandre Julliard
parent 0761f537ee
commit 35201ffc14
1 changed files with 1 additions and 1 deletions

View File

@ -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; }
;