| 164 | |
| 165 | #if EFSW_PLATFORM == EFSW_PLATFORM_WIN32 |
| 166 | std::wstring FileSystem::getWidePath(const std::string & path) { |
| 167 | #if defined(USE_FILESYSTEM_PATH_CONVERSION) |
| 168 | return std::filesystem::u8path( path ).wstring(); |
| 169 | #else |
| 170 | return String::fromUtf8( path ).toWideString(); |
| 171 | #endif |
| 172 | } |
| 173 | #endif |
| 174 | |
| 175 | } // namespace efsw |
nothing calls this directly
no test coverage detected