From 6e428f97e54c4ebff1d5c3d4ba7e1122a15e0ea8 Mon Sep 17 00:00:00 2001 From: Andrey Pfau Date: Wed, 5 Jul 2023 21:37:44 +0300 Subject: [PATCH] fix grammar in expr17 --- crypto/func/parse-func.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/func/parse-func.cpp b/crypto/func/parse-func.cpp index 15794c42..a4777393 100644 --- a/crypto/func/parse-func.cpp +++ b/crypto/func/parse-func.cpp @@ -852,7 +852,7 @@ Expr* parse_expr20(Lexer& lex, CodeBlob& code, bool nv) { return res; } -// parse E { ( << | >> | >>~ | >>^ ) E } +// parse E { ( << | >> | ~>> | ^>> ) E } Expr* parse_expr17(Lexer& lex, CodeBlob& code, bool nv) { Expr* res = parse_expr20(lex, code, nv); while (lex.tp() == _Lshift || lex.tp() == _Rshift || lex.tp() == _RshiftC || lex.tp() == _RshiftR) {