1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00

math parser: operator precedence fix

This commit is contained in:
Antonin Portelli 2014-02-20 20:21:17 +00:00
parent 16a7ad808b
commit 242c3f4225

View File

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