Update src/Parsers/ParserDataType.cpp

Co-authored-by: Nikolay Degterinsky <43110995+evillique@users.noreply.github.com>
This commit is contained in:
Alexey Milovidov 2022-12-27 17:16:31 +03:00 committed by GitHub
parent 4ce9732502
commit c27f90c8ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ private:
{ {
ParserNestedTable nested_parser; ParserNestedTable nested_parser;
ParserDataType data_type_parser; ParserDataType data_type_parser;
ParserAllCollectionsOfLiterals literal_parser; ParserAllCollectionsOfLiterals literal_parser(false);
const char * operators[] = {"=", "equals", nullptr}; const char * operators[] = {"=", "equals", nullptr};
ParserLeftAssociativeBinaryOperatorList enum_parser(operators, std::make_unique<ParserLiteral>()); ParserLeftAssociativeBinaryOperatorList enum_parser(operators, std::make_unique<ParserLiteral>());