Use default operators generated/synthesized by compiler

This commit is contained in:
Chocobo1 2022-04-02 13:34:52 +08:00
parent 10ee1ab7a2
commit 7612d5d0ef
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
15 changed files with 4 additions and 76 deletions

View file

@ -342,11 +342,6 @@ bool operator==(const Path &lhs, const Path &rhs)
return (lhs.data().compare(rhs.data(), CASE_SENSITIVITY) == 0);
}
bool operator!=(const Path &lhs, const Path &rhs)
{
return !(lhs == rhs);
}
Path operator/(const Path &lhs, const Path &rhs)
{
if (rhs.isEmpty())