diff options
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: | |||
| 96 | return m_node == rhs.m_node; | 96 | return m_node == rhs.m_node; |
| 97 | } | 97 | } |
| 98 | 98 | ||
| 99 | constexpr bool operator!=(const Iterator& rhs) const { | ||
| 100 | return !(*this == rhs); | ||
| 101 | } | ||
| 102 | |||
| 103 | constexpr pointer operator->() const { | 99 | constexpr pointer operator->() const { |
| 104 | return m_node; | 100 | return m_node; |
| 105 | } | 101 | } |
| @@ -324,10 +320,6 @@ public: | |||
| 324 | return m_impl == rhs.m_impl; | 320 | return m_impl == rhs.m_impl; |
| 325 | } | 321 | } |
| 326 | 322 | ||
| 327 | constexpr bool operator!=(const Iterator& rhs) const { | ||
| 328 | return !(*this == rhs); | ||
| 329 | } | ||
| 330 | |||
| 331 | constexpr pointer operator->() const { | 323 | constexpr pointer operator->() const { |
| 332 | return Traits::GetParent(std::addressof(*m_impl)); | 324 | return Traits::GetParent(std::addressof(*m_impl)); |
| 333 | } | 325 | } |