diff options
author | Liam <byteslice@airmail.cc> | 2023-04-02 19:02:04 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-04-02 19:02:04 -0400 |
commit | a9623d5f550c8fc63f436a40f43bfbf539ac0853 (patch) | |
tree | b6513dfee3b8410ab61d5e9ea799e757f049a1de /src/common/intrusive_red_black_tree.h | |
parent | 0730dc6c44d8b589efeb80d974650c72ba44c4f7 (diff) |
general: fixes for gcc 13
Diffstat (limited to 'src/common/intrusive_red_black_tree.h')
-rw-r--r-- | src/common/intrusive_red_black_tree.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/common/intrusive_red_black_tree.h b/src/common/intrusive_red_black_tree.h index 5f6b34e82..bc2940fa0 100644 --- a/src/common/intrusive_red_black_tree.h +++ b/src/common/intrusive_red_black_tree.h @@ -96,10 +96,6 @@ public: return m_node == rhs.m_node; } - constexpr bool operator!=(const Iterator& rhs) const { - return !(*this == rhs); - } - constexpr pointer operator->() const { return m_node; } @@ -324,10 +320,6 @@ public: return m_impl == rhs.m_impl; } - constexpr bool operator!=(const Iterator& rhs) const { - return !(*this == rhs); - } - constexpr pointer operator->() const { return Traits::GetParent(std::addressof(*m_impl)); } |