Fixed UTF16 => UTF8 DebugPrint conversion

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-04-01 02:01:49 +02:00 committed by Alexander Borsuk
parent 7ac7d348cf
commit 506e2481cc

View file

@ -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;
}