| 147 | } |
| 148 | |
| 149 | std::string UTF16StringToUTF8Internal(std::u16string_view source) { |
| 150 | std::string s; |
| 151 | ::utf8::utf16to8(source.begin(), source.end(), std::back_inserter(s)); |
| 152 | return s; |
| 153 | } |
| 154 | |
| 155 | std::u16string UTF8StringToUTF16Internal(std::string_view source) { |
| 156 | std::u16string s; |
no test coverage detected