Adjustments after review

This commit is contained in:
wechman
2022-09-28 13:07:59 +02:00
parent 3bc52acbd1
commit 5572d3aed8
8 changed files with 11 additions and 12 deletions
+1 -1
View File
@@ -980,7 +980,7 @@ ASTPointer<UsingForDirective> Parser::parseUsingDirective()
{
advance();
Token operator_ = m_scanner->currentToken();
vector<Token> overridableOperators = {
vector<Token> static const overridableOperators = {
// Potential future additions: <<, >>, **, !
Token::BitOr, Token::BitAnd, Token::BitXor,
Token::Add, Token::Sub, Token::Mul, Token::Div, Token::Mod,