| 317 | } |
| 318 | |
| 319 | std::string ToSlashes(std::string_view v) { |
| 320 | std::string s(v); |
| 321 | #ifdef _WIN32 |
| 322 | for (auto& c : s) { |
| 323 | if (c == '\\') { |
| 324 | c = '/'; |
| 325 | } |
| 326 | } |
| 327 | #endif |
| 328 | return s; |
| 329 | } |
| 330 | |
| 331 | bool IsEmptyPath(std::string_view v) { |
| 332 | for (const auto c : v) { |
no outgoing calls