early-access version 3501

This commit is contained in:
pineappleEA
2023-04-07 02:00:48 +02:00
parent e900ff1ff1
commit 3ef754c1e7
16 changed files with 37 additions and 65 deletions

View File

@@ -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));
}