DevSpec:lex: Remove annotation comment by GPT

This commit is contained in:
2025-01-17 11:56:42 -04:00
parent 99c126a08c
commit f1696f8272
+1 -1
View File
@@ -26,7 +26,7 @@
"|" { return PIPE; }
"(" { return LPAREN; }
")" { return RPAREN; }
"=" { return EQUALS; } // Match "=" on its own
"=" { return EQUALS; }
(\\.|[^=\|\(\) \t\r\n])+ {
std::string token(yytext);
std::string unescaped;