Revert "Derive operator!= from operator== (#1660)"

This reverts commit 993879a2ed.
This commit is contained in:
ISSOtm
2026-04-26 14:43:57 +02:00
committed by Rangi
parent decc5f7153
commit 6bcd79b997
5 changed files with 6 additions and 0 deletions
+1
View File
@@ -100,6 +100,7 @@ private:
AssignedSetsIter() = default;
bool operator==(AssignedSetsIter const &rhs) const { return _iter == rhs._iter; }
bool operator!=(AssignedSetsIter const &rhs) const { return !operator==(rhs); }
AssignedSetsIter &operator++() {
++_iter;
+1
View File
@@ -263,6 +263,7 @@ struct Image {
}
bool operator==(Iterator const &rhs) const { return coords() == rhs.coords(); }
bool operator!=(Iterator const &rhs) const { return !operator==(rhs); }
};
public: