util/DereferenceIterator: remove unnecessary operator!=()
The compiler must generate this implicitly from operator==().
This commit is contained in:
parent
68a424d9e1
commit
0cc9ef0aee
|
@ -80,8 +80,4 @@ public:
|
||||||
bool operator==(const DereferenceIterator<IT,VT> &other) const noexcept {
|
bool operator==(const DereferenceIterator<IT,VT> &other) const noexcept {
|
||||||
return original == other.original;
|
return original == other.original;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator!=(const DereferenceIterator<IT,VT> &other) const noexcept {
|
|
||||||
return original != other.original;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue