mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
math parser: operator precedence fix
This commit is contained in:
parent
16a7ad808b
commit
242c3f4225
@ -53,8 +53,8 @@
|
|||||||
%left '='
|
%left '='
|
||||||
%left '+' '-'
|
%left '+' '-'
|
||||||
%left '*' '/'
|
%left '*' '/'
|
||||||
%left '^'
|
|
||||||
%nonassoc UMINUS
|
%nonassoc UMINUS
|
||||||
|
%left '^'
|
||||||
|
|
||||||
%type <val_node> stmt stmt_list expr func_args
|
%type <val_node> stmt stmt_list expr func_args
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user