mirror of https://github.com/CGAL/cgal
Use this-> more consistently for begin and end.
This commit is contained in:
parent
125fa88349
commit
08b8848282
|
|
@ -149,12 +149,12 @@ public:
|
||||||
|
|
||||||
Self& operator++()
|
Self& operator++()
|
||||||
{
|
{
|
||||||
if ( nested_it_ != end( this->base() ) ) {
|
if ( nested_it_ != this->end( this->base() ) ) {
|
||||||
++nested_it_;
|
++nested_it_;
|
||||||
if ( nested_it_ == end( this->base() ) ) {
|
if ( nested_it_ == this->end( this->base() ) ) {
|
||||||
Filter_base_iterator::operator++();
|
Filter_base_iterator::operator++();
|
||||||
if ( !this->is_end() ) {
|
if ( !this->is_end() ) {
|
||||||
nested_it_ = begin( this->base() );
|
nested_it_ = this->begin( this->base() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -175,7 +175,7 @@ public:
|
||||||
nested_it_ = this->end(this->base());
|
nested_it_ = this->end(this->base());
|
||||||
--nested_it_;
|
--nested_it_;
|
||||||
} else {
|
} else {
|
||||||
if ( nested_it_ != begin( this->base() ) ) {
|
if ( nested_it_ != this->begin( this->base() ) ) {
|
||||||
--nested_it_;
|
--nested_it_;
|
||||||
} else {
|
} else {
|
||||||
Filter_base_iterator::operator--();
|
Filter_base_iterator::operator--();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue