mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
Fix SimpleMatcher for keyword ignore case does not properly ignore case
This commit is contained in:
parent
5df6fce48a
commit
6c5825de6d
@ -19,7 +19,7 @@ MatcherResult<SimpleParserValue> SimpleMatcherKeywordIgnoreCase::CanMatch(ILexer
|
|||||||
const auto& identifierValue = token.IdentifierValue();
|
const auto& identifierValue = token.IdentifierValue();
|
||||||
const auto isEqual = std::equal(identifierValue.begin(), identifierValue.end(), m_value.begin(), m_value.end(), [](const char a, const char b)
|
const auto isEqual = std::equal(identifierValue.begin(), identifierValue.end(), m_value.begin(), m_value.end(), [](const char a, const char b)
|
||||||
{
|
{
|
||||||
return a == tolower(b);
|
return tolower(a) == b;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isEqual)
|
if (isEqual)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user