BAN: Fix simple iterator operator--()
This commit is contained in:
@@ -59,7 +59,8 @@ namespace BAN
|
||||
IteratorSimpleGeneral& operator--()
|
||||
{
|
||||
ASSERT(m_pointer);
|
||||
return --m_pointer;
|
||||
--m_pointer;
|
||||
return *this;
|
||||
}
|
||||
IteratorSimpleGeneral operator--(int)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user