| 115 | }; |
| 116 | |
| 117 | static void mergePaths(KDevelop::Path::List& destList, const KDevelop::Path::List& srcList) |
| 118 | { |
| 119 | for (const Path& path : srcList) { |
| 120 | if (!destList.contains(path)) |
| 121 | destList.append(path); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | void PathResolutionResult::mergeWith(const PathResolutionResult& rhs) |
| 126 | { |