forked from organicmaps/organicmaps-tmp
Fixed UTF16 => UTF8 DebugPrint conversion
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
7ac7d348cf
commit
506e2481cc
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ namespace internal
|
|||
std::string ToUtf8(std::u16string_view utf16)
|
||||
{
|
||||
std::string utf8;
|
||||
utf8::unchecked::utf16to8(utf16.begin(), utf16.end(), utf8.begin());
|
||||
utf8::unchecked::utf16to8(utf16.begin(), utf16.end(), std::back_inserter(utf8));
|
||||
return utf8;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue