| 86 | // ---------------------------------------------------------------------------------------- |
| 87 | |
| 88 | const std::wstring convert_utf32_to_wstring(const ustring &src) |
| 89 | { |
| 90 | ustring2wstr<sizeof(wchar_t)> conv(src); |
| 91 | std::wstring dest(conv.wstr); |
| 92 | return dest; |
| 93 | } |
| 94 | |
| 95 | // ---------------------------------------------------------------------------------------- |
| 96 |
no outgoing calls
no test coverage detected