From 62f0f3841e159b82222877727285b090ec8190f6 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 3 Jun 2011 15:37:16 +0000 Subject: Corrected a precedence issue with the << operator which was causing shift/reduce conflicts. --- src/build.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.y b/src/build.y index 0a9111c..5a5e938 100644 --- a/src/build.y +++ b/src/build.y @@ -91,7 +91,7 @@ void yyerror( YYLTYPE *locp, yyscan_t yyscanner, BuildParser &bld, const char *m %token '(' ')' '{' '}' '[' ']' ',' ';' '=' '.' '<' '>' '+' '-' '*' '/' -%right '=' OP_ADDSETP OPADDSETR +%right '=' OP_ADDSETP OP_ADDSETR OPADDSETR %left OP_CMPEQUAL '<' '>' OP_INEQUAL OP_LTEQUAL OP_GTEQUAL '+' '-' '*' '/' %left '(' ')' '{' '}' '[' ']' %left IINEG IINOT -- cgit v1.2.3