summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/HashIndex.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibSQL/HashIndex.h')
-rw-r--r--Userland/Libraries/LibSQL/HashIndex.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibSQL/HashIndex.h b/Userland/Libraries/LibSQL/HashIndex.h
index b7f55198e8..37caaaae1e 100644
--- a/Userland/Libraries/LibSQL/HashIndex.h
+++ b/Userland/Libraries/LibSQL/HashIndex.h
@@ -118,9 +118,7 @@ public:
[[nodiscard]] bool is_end() const { return !m_current; }
bool operator==(HashIndexIterator const& other) const;
- bool operator!=(HashIndexIterator const& other) const { return !(*this == other); }
bool operator==(Key const& other) const;
- bool operator!=(Key const& other) const { return !(*this == other); }
HashIndexIterator operator++()
{