This commit is contained in:
catalinvasile
2024-09-05 17:10:28 +02:00
parent 2195ccfc28
commit 25063b4f6d
3 changed files with 16 additions and 0 deletions
+5
View File
@@ -910,6 +910,11 @@ abs_path<PathSystems> operator+(const abs_path_view<PathSystems>& a, const abs_p
p += b;
return p;
}
template<class PathSystems>
bool operator==(const abs_path_view<PathSystems>& a, const abs_path<PathSystems>& b) noexcept
{
return b == a;
}
}