| 283 | } |
| 284 | |
| 285 | int RemoveFileUtf8(const std::string& fileName) { |
| 286 | #ifdef _WIN32 |
| 287 | return _wremove(internal::WideFromUtf8(fileName).c_str()); |
| 288 | #else |
| 289 | return std::remove(fileName.c_str()); |
| 290 | #endif |
| 291 | } |
| 292 | |
| 293 | #ifdef _WIN32 |
| 294 | std::vector<std::string> GetUtf8CommandLineArgs() { |
no test coverage detected