Codechange: remove operator!=s that are synthesized
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user