From 0dd8a9ba93ab49761f727b234a2ba65a92b19289 Mon Sep 17 00:00:00 2001 From: fsub <31548809+fsub@users.noreply.github.com> Date: Sun, 12 Nov 2017 17:27:41 +0100 Subject: [PATCH] Fix #1693: typo in RegexParser::character_class() --- src/regex_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regex_impl.cc b/src/regex_impl.cc index 8909d766..2a992df9 100644 --- a/src/regex_impl.cc +++ b/src/regex_impl.cc @@ -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)