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

#include <QString>

namespace mbgl {
namespace util {

std::u16string utf8_to_utf16::convert(std::string const& utf8) {
    auto utf16 = QString::fromUtf8(utf8.data(), utf8.length());

    // Newers Qt have QString::toStdU16String(), but this is how it is
    // implemented. Do it here to keep compatibility with older versions.
    return std::u16string(reinterpret_cast<const char16_t*>(utf16.utf16()), utf16.length());
}

} // namespace util
} // namespace mbgl