Skip to content
Snippets Groups Projects
Commit 71733bb5 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Remove `!` operator for consistency

One must use `not`
parent 4146b9c5
No related branches found
No related tags found
1 merge request!37Feature/language
...@@ -128,7 +128,7 @@ struct unary_minusminus : TAO_PEGTL_STRING("--") {}; ...@@ -128,7 +128,7 @@ struct unary_minusminus : TAO_PEGTL_STRING("--") {};
struct unary_plus : one< '+' > {}; struct unary_plus : one< '+' > {};
struct unary_minus : one< '-' > {}; struct unary_minus : one< '-' > {};
struct unary_not : sor< one< '!'> , not_kw > {}; struct unary_not : not_kw {};
struct unary_operator : seq< sor< unary_plusplus, unary_minusminus, unary_plus, unary_minus, unary_not>, ignored > {}; struct unary_operator : seq< sor< unary_plusplus, unary_minusminus, unary_plus, unary_minus, unary_not>, ignored > {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment