general: fixes for gcc 13

This commit is contained in:
Liam 2023-04-02 19:02:04 -04:00
parent 6f649f250f
commit bbc9f0d3e9
6 changed files with 14 additions and 28 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));
}