Merge pull request #1830 from svick/patch-2

Unquote right_shift in the syntax for overloadable_binary_operator
This commit is contained in:
Julien Couvreur 2018-11-07 17:06:00 -08:00 committed by GitHub
commit e7956e22a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3532,7 +3532,7 @@ binary_operator_declarator
overloadable_binary_operator
: '+' | '-' | '*' | '/' | '%' | '&' | '|' | '^' | '<<'
| 'right_shift' | '==' | '!=' | '>' | '<' | '>=' | '<='
| right_shift | '==' | '!=' | '>' | '<' | '>=' | '<='
;
conversion_operator_declarator