Codechange: remove operator!=s that are synthesized

This commit is contained in:
Rubidium
2025-02-08 00:13:02 +01:00
committed by rubidium42
parent 760b8f74b7
commit 04d53ed6f5
12 changed files with 0 additions and 54 deletions

View File

@@ -315,7 +315,6 @@ struct SetBitIterator {
{
return this->bitset == other.bitset;
}
bool operator!=(const Iterator &other) const { return !(*this == other); }
Tbitpos operator*() const { return this->bitpos; }
Iterator & operator++() { this->Next(); this->Validate(); return *this; }

View File

@@ -162,7 +162,6 @@ public:
};
bool operator==(const PoolIterator &other) const { return this->index == other.index; }
bool operator!=(const PoolIterator &other) const { return !(*this == other); }
T * operator*() const { return T::Get(this->index); }
PoolIterator & operator++() { this->index++; this->ValidateIndex(); return *this; }
@@ -206,7 +205,6 @@ public:
};
bool operator==(const PoolIteratorFiltered &other) const { return this->index == other.index; }
bool operator!=(const PoolIteratorFiltered &other) const { return !(*this == other); }
T * operator*() const { return T::Get(this->index); }
PoolIteratorFiltered & operator++() { this->index++; this->ValidateIndex(); return *this; }