| 72 | } |
| 73 | |
| 74 | static std::string normalizePath(std::string path) { |
| 75 | std::replace(path.begin(), path.end(), '\\', '/'); |
| 76 | return path; |
| 77 | } |
| 78 | |
| 79 | static std::string ensureTrailingSlash(std::string path) { |
| 80 | path = normalizePath(path); |
no outgoing calls
no test coverage detected