diff --git a/BAN/include/BAN/Iterators.h b/BAN/include/BAN/Iterators.h index 8af78e6b4a..f39a75c527 100644 --- a/BAN/include/BAN/Iterators.h +++ b/BAN/include/BAN/Iterators.h @@ -135,6 +135,11 @@ namespace BAN return IteratorSimpleGeneral(m_pointer - offset); } + bool operator<(const IteratorSimpleGeneral& other) const + { + return m_pointer < other.m_pointer; + } + bool operator==(const IteratorSimpleGeneral& other) const { return m_pointer == other.m_pointer;