util/IterableSplitString: remove unnecessary operator!=()

The compiler must generate this implicitly from operator==().
This commit is contained in:
Max Kellermann 2024-07-22 16:53:29 +02:00 committed by Max Kellermann
parent 9944c97203
commit 0e4885c1fa
1 changed files with 0 additions and 4 deletions

View File

@ -68,10 +68,6 @@ public:
return current.data() == other.current.data();
}
constexpr bool operator!=(Iterator other) const noexcept {
return !(*this == other);
}
constexpr string_view operator*() const noexcept {
return current;
}