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

This commit is contained in:
Rangi
2025-02-15 12:37:42 +01:00
committed by GitHub
parent 62309d5c87
commit 993879a2ed
6 changed files with 3 additions and 8 deletions

View File

@@ -38,7 +38,6 @@ struct Rgba {
}
bool operator==(Rgba const &rhs) const { return toCSS() == rhs.toCSS(); }
bool operator!=(Rgba const &rhs) const { return !operator==(rhs); }
// CGB colors are RGB555, so we use bit 15 to signify that the color is transparent instead
// Since the rest of the bits don't matter then, we return 0x8000 exactly.

View File

@@ -25,7 +25,6 @@ class EnumSeq {
auto operator*() const { return _value; }
bool operator==(Iterator const &rhs) const { return _value == rhs._value; }
bool operator!=(Iterator const &rhs) const { return !operator==(rhs); }
};
public:
@@ -59,7 +58,6 @@ public:
bool operator==(ZipIterator const &rhs) const {
return std::get<0>(_iters) == std::get<0>(rhs._iters);
}
bool operator!=(ZipIterator const &rhs) const { return !operator==(rhs); }
};
template<typename... Ts>