diff --git a/unicode.h b/unicode.h index ce3a4044b..84269a556 100644 --- a/unicode.h +++ b/unicode.h @@ -359,7 +359,7 @@ static std::vector codepoints_from_utf16(const std::vector& static std::unordered_map codepoint_type_map() { std::unordered_map codepoint_types; - for(auto p : digit_ranges) { + for (auto p : digit_ranges) { for(auto i = p.first; i <= p.second; ++ i) codepoint_types[i] = CODEPOINT_TYPE_DIGIT; }