#include #include 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(utf16.utf16()), utf16.length()); } } // namespace util } // namespace mbgl