mirror of
https://github.com/boostorg/polygon.git
synced 2026-07-21 13:33:42 +00:00
Mark operators const
This commit is contained in:
@@ -2175,8 +2175,8 @@ namespace boost { namespace polygon{
|
||||
itr_ = that.itr_;
|
||||
return *this;
|
||||
}
|
||||
inline bool operator==(const iterator_holes_type& that) { return itr_ == that.itr_; }
|
||||
inline bool operator!=(const iterator_holes_type& that) { return itr_ != that.itr_; }
|
||||
inline bool operator==(const iterator_holes_type& that) const { return itr_ == that.itr_; }
|
||||
inline bool operator!=(const iterator_holes_type& that) const { return itr_ != that.itr_; }
|
||||
inline iterator_holes_type& operator++() {
|
||||
++itr_;
|
||||
return *this;
|
||||
|
||||
Reference in New Issue
Block a user