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:
parent
326b546844
commit
5ba7e2f420
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user