| 5 | namespace bdn |
| 6 | { |
| 7 | std::string fromUtf32(const std::u32string &utf32String) |
| 8 | { |
| 9 | std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> convert; |
| 10 | return convert.to_bytes(utf32String); |
| 11 | } |
| 12 | |
| 13 | std::string fromUtf16(const std::u16string &utf16String) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected