summaryrefslogtreecommitdiff
path: root/src/string_utils.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_utils.hh')
-rw-r--r--src/string_utils.hh2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/string_utils.hh b/src/string_utils.hh
index 13d15018..3cd7c825 100644
--- a/src/string_utils.hh
+++ b/src/string_utils.hh
@@ -82,8 +82,6 @@ struct WrapView
Iterator operator++(int) { auto copy = *this; ++(*this); return copy; }
bool operator==(Iterator other) const { return m_remaining == other.m_remaining and m_current == other.m_current; }
- bool operator!=(Iterator other) const { return not (*this == other); }
-
StringView operator*() { return m_current; }
private: