summaryrefslogtreecommitdiff
path: root/src/mbgl/util/utf.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/utf.hpp')
-rw-r--r--src/mbgl/util/utf.hpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mbgl/util/utf.hpp b/src/mbgl/util/utf.hpp
index c13b094371..d870fb9331 100644
--- a/src/mbgl/util/utf.hpp
+++ b/src/mbgl/util/utf.hpp
@@ -5,10 +5,8 @@
namespace mbgl {
namespace util {
-class utf8_to_utf16 {
-public:
- static std::u16string convert(std::string const&);
-};
+std::u16string convertUTF8ToUTF16(const std::string&);
+std::string convertUTF16ToUTF8(const std::u16string&);
} // namespace util
} // namespace mbgl