Fixes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -830,6 +830,11 @@ rel_path<PathSystems> operator+(const rel_path_view<PathSystems>& a, const rel_p
|
||||
p += b;
|
||||
return p;
|
||||
}
|
||||
template<class PathSystems>
|
||||
bool operator==(const rel_path_view<PathSystems>& a, const rel_path<PathSystems>& b) noexcept
|
||||
{
|
||||
return b == a;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user