mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-11 11:52:11 +00:00
Fixed syntax in equal / closing_iterator (will be iterator_facade)
[SVN r62171]
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user