From 729eeeb3f821981cc5d3c9e06ffbb85ed4d857d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Wed, 17 Oct 2018 16:45:41 +0200 Subject: [core] remove use of --- src/mbgl/util/i18n.cpp | 4 ++++ src/mbgl/util/i18n.hpp | 2 ++ 2 files changed, 6 insertions(+) (limited to 'src/mbgl/util') diff --git a/src/mbgl/util/i18n.cpp b/src/mbgl/util/i18n.cpp index 0fa6122673..66c9e027a7 100644 --- a/src/mbgl/util/i18n.cpp +++ b/src/mbgl/util/i18n.cpp @@ -618,6 +618,10 @@ bool isStringInSupportedScript(const std::string& input) { return true; } +bool isWhitespace(char16_t chr) { + return chr == u' ' || chr == u'\t' || chr == u'\n' || chr == u'\v' || chr == u'\f' || chr == u'\r'; +} + } // namespace i18n } // namespace util } // namespace mbgl diff --git a/src/mbgl/util/i18n.hpp b/src/mbgl/util/i18n.hpp index a74215a134..c7544f443b 100644 --- a/src/mbgl/util/i18n.hpp +++ b/src/mbgl/util/i18n.hpp @@ -75,6 +75,8 @@ char16_t verticalizePunctuation(char16_t chr); bool isStringInSupportedScript(const std::string& input); +bool isWhitespace(char16_t chr); + } // namespace i18n } // namespace util } // namespace mbgl -- cgit v1.2.1