mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Derive operator!= from operator== (#1660)
This commit is contained in:
@@ -87,7 +87,6 @@ private:
|
||||
Iter() = default;
|
||||
|
||||
bool operator==(Iter const &rhs) const { return _iter == rhs._iter; }
|
||||
bool operator!=(Iter const &rhs) const { return !operator==(rhs); }
|
||||
|
||||
Iter &operator++() {
|
||||
++_iter;
|
||||
|
||||
Reference in New Issue
Block a user