| 309 | } |
| 310 | |
| 311 | std::string concatPaths(const char* path1, const char* path2) { |
| 312 | std::string ret = getPathForOS(path1); |
| 313 | ret += getPathForOS(path2); |
| 314 | |
| 315 | return ret; |
| 316 | } |
| 317 | |
| 318 | std::string getFileDir(const char* file) { |
| 319 | std::string f = convertPathToDelims(file); |
nothing calls this directly
no test coverage detected