| 4421 | |
| 4422 | #ifdef _WIN32 |
| 4423 | static inline std::wstring UTF8ToWchar(const std::string &str) { |
| 4424 | int wstr_size = |
| 4425 | MultiByteToWideChar(CP_UTF8, 0, str.data(), (int)str.size(), NULL, 0); |
| 4426 | std::wstring wstr(wstr_size, 0); |
| 4427 | MultiByteToWideChar(CP_UTF8, 0, str.data(), (int)str.size(), &wstr[0], |
| 4428 | (int)wstr.size()); |
| 4429 | return wstr; |
| 4430 | } |
| 4431 | #endif |
| 4432 | |
| 4433 |
no test coverage detected