diff options
Diffstat (limited to 'src/common/StringUtil.cpp')
-rw-r--r-- | src/common/StringUtil.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/common/StringUtil.cpp b/src/common/StringUtil.cpp index 850524b5..c828fa21 100644 --- a/src/common/StringUtil.cpp +++ b/src/common/StringUtil.cpp @@ -252,16 +252,4 @@ char16_t ToUpper(char16_t c) { } return c; } - -std::u16string ToLower(std::u16string_view s) { - std::u16string result; - for (auto c : s) result.push_back(ToLower(c)); - return result; -} - -std::u16string ToUpper(std::u16string_view s) { - std::u16string result; - for (auto c : s) result.push_back(ToUpper(c)); - return result; -} } // namespace cru |