Fix #1693: typo in RegexParser::character_class()

This commit is contained in:
fsub 2017-11-12 17:27:41 +01:00
parent b298e01390
commit 0dd8a9ba93

View File

@ -490,7 +490,7 @@ private:
{
for (auto& range : ranges)
{
range.min = to_lower(range.max);
range.min = to_lower(range.min);
range.max = to_lower(range.max);
}
for (auto& cp : excluded)