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

@@ -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;