| 81 | } |
| 82 | |
| 83 | inline std::string GetPathRoot(const std::string &path) { |
| 84 | return path.substr(0, path.find_first_of(":")); |
| 85 | } |
| 86 | |
| 87 | inline std::string GetPathWithoutRoot(const std::string &path) { |
| 88 | return path.substr(path.find_first_of(":") + 1); |
no outgoing calls
no test coverage detected