summaryrefslogtreecommitdiff
path: root/platform/default/utf.cpp
blob: 8bc8ea73149d6a044150f0dfa3a74ecad3704058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <mbgl/util/utf.hpp>

#include <locale>
#include <codecvt>

namespace mbgl {
namespace util {

std::u16string utf8_to_utf16::convert(const std::string& utf8) {
    return std::wstring_convert<std::codecvt_utf8_utf16<char16_t>, char16_t>().from_bytes(utf8);
}

} // namespace util
} // namespace mbgl