| 149 | } |
| 150 | |
| 151 | bool isPathAbsolute(std::string const &source) { |
| 152 | return !source.empty() && source.at(0) == getPathSeparatorCharacter(); |
| 153 | } |
| 154 | |
| 155 | void clonePathTree(PathTree const &src, PathTree &dest) { |
| 156 | auto nodes = pathTreeToJson(src); |
no test coverage detected