Fix CLion

This commit is contained in:
Alexey Milovidov 2023-01-09 04:35:19 +01:00
parent 93bfe94c86
commit 3414d917dc

View File

@ -850,7 +850,7 @@ bool ParserNumber::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
auto literal = std::make_shared<ASTLiteral>(res);
literal->begin = literal_begin;
literal->end = ++pos;
node = literal;entrypoint.sh
node = literal;
return true;
}