summaryrefslogtreecommitdiff
path: root/src/common/intrusive_red_black_tree.h
diff options
context:
space:
mode:
authorGravatar Liam2023-04-02 19:02:04 -0400
committerGravatar Liam2023-04-02 19:02:04 -0400
commita9623d5f550c8fc63f436a40f43bfbf539ac0853 (patch)
treeb6513dfee3b8410ab61d5e9ea799e757f049a1de /src/common/intrusive_red_black_tree.h
parentMerge pull request #10005 from liamwhite/kernel-atomics (diff)
downloadyuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.gz
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.xz
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.zip
general: fixes for gcc 13
Diffstat (limited to 'src/common/intrusive_red_black_tree.h')
-rw-r--r--src/common/intrusive_red_black_tree.h8
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 }