glcpp: Remove 2 shift/reduce conflicts from the grammar.
Since we have productions to turn "defined FOO" and "defined ( FOO )" into a conditional_token we don't need to list DEFINED as an operator as well. Doing so just introduces the shift/reduce ambiguity with no benefit.
This commit is contained in:
parent
f9b0e5e322
commit
2233d10442
1 changed files with 0 additions and 1 deletions
|
|
@ -478,7 +478,6 @@ operator:
|
|||
| ',' { $$ = ','; }
|
||||
| '=' { $$ = '='; }
|
||||
| PASTE { $$ = PASTE; }
|
||||
| DEFINED { $$ = DEFINED; }
|
||||
;
|
||||
|
||||
%%
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue