widl: Fix operator precedence in expressions.

This commit is contained in:
Rob Shearman 2008-04-22 11:35:27 +01:00 committed by Alexandre Julliard
parent 9c02e01dcb
commit b599d2596b
1 changed files with 2 additions and 6 deletions

View File

@ -292,15 +292,11 @@ static void add_explicit_handle_if_necessary(func_t *func);
%right '?' ':'
%left '|'
%left '&'
%left SHL SHR
%left '-' '+'
%left '*' '/' '%'
%left SHL SHR
%right '~' CAST PPTR NEG ADDRESSOF tSIZEOF
%left '.' MEMBERPTR '[' ']'
%right '~'
%right CAST
%right PPTR
%right NEG
%right ADDRESSOF
%%