util/IterableSplitString: remove unnecessary operator!=()
The compiler must generate this implicitly from operator==().
This commit is contained in:
parent
9944c97203
commit
0e4885c1fa
|
@ -68,10 +68,6 @@ public:
|
||||||
return current.data() == other.current.data();
|
return current.data() == other.current.data();
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr bool operator!=(Iterator other) const noexcept {
|
|
||||||
return !(*this == other);
|
|
||||||
}
|
|
||||||
|
|
||||||
constexpr string_view operator*() const noexcept {
|
constexpr string_view operator*() const noexcept {
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue