Commit b599d259 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

widl: Fix operator precedence in expressions.

parent 9c02e01d
......@@ -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
%%
......
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