| 125 | } |
| 126 | |
| 127 | static inline std::string getAbsolutePath(PathNode &node, |
| 128 | std::string const &path) { |
| 129 | if (isPathAbsolute(path)) { |
| 130 | return path; |
| 131 | } |
| 132 | return getFullPath(treePathRetrieve(node, path)); |
| 133 | } |
| 134 | |
| 135 | bool addAliasFromSourceAndRelativeDest(PathNode &node, |
| 136 | std::string const &source, |
no test coverage detected