Fixed syntax in equal / closing_iterator (will be iterator_facade)

[SVN r62171]
This commit is contained in:
Barend Gehrels
2010-05-24 11:31:08 +00:00
parent 068c2fa90a
commit 04d8c000be

View File

@@ -55,11 +55,10 @@ struct closing_iterator
this->base_reference() = m_end;
}
//inline bool equal(closing_iterator const& other) const
inline bool operator==(closing_iterator const& other) const
inline bool equal(closing_iterator const& other) const
{
return this->base() == other->base()
&& this->m_beyond == other->m_beyond;
return this->base() == other.base()
&& this->m_beyond == other.m_beyond;
}