8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:03:04 +01:00

Avoid unneeded cast

This commit is contained in:
Alex Peshkoff 2019-06-28 18:25:11 +03:00
parent 326b546844
commit 5ba7e2f420

View File

@ -1128,7 +1128,7 @@ int Parser::yylexAux()
if (lex.last_token + 1 < lex.end && !isspace(UCHAR(lex.last_token[1])))
{
Firebird::string str(lex.last_token, 2);
Firebird::MetaName str(lex.last_token, 2);
KeywordVersion* keyVer = keywordsMap->get(str);
if (keyVer && parser_version >= keyVer->version)