summaryrefslogtreecommitdiffstats
path: root/src/common/intrusive_red_black_tree.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-04-08 09:09:06 +0200
committerGitHub <noreply@github.com>2023-04-08 09:09:06 +0200
commit25c4ae6e111146386d59acd355cebe88c3d5331f (patch)
treeaaedf79b8d1cdad3db4f1fcf76ffbb0aa9d4f460 /src/common/intrusive_red_black_tree.h
parentMerge pull request #10028 from zhaobot/tx-update-20230404051754 (diff)
parentgeneral: fixes for gcc 13 (diff)
downloadyuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.tar
yuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.tar.gz
yuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.tar.bz2
yuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.tar.lz
yuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.tar.xz
yuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.tar.zst
yuzu-25c4ae6e111146386d59acd355cebe88c3d5331f.zip
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:
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));
}