From 08b88482820b3af8f51b01dfd7dcba9e7196461a Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Fri, 23 Apr 2010 08:09:14 +0000 Subject: [PATCH] Use this-> more consistently for begin and end. --- STL_Extension/include/CGAL/Nested_iterator.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/STL_Extension/include/CGAL/Nested_iterator.h b/STL_Extension/include/CGAL/Nested_iterator.h index 9a21241bcc2..9ec647b85f4 100644 --- a/STL_Extension/include/CGAL/Nested_iterator.h +++ b/STL_Extension/include/CGAL/Nested_iterator.h @@ -149,12 +149,12 @@ public: Self& operator++() { - if ( nested_it_ != end( this->base() ) ) { + if ( nested_it_ != this->end( this->base() ) ) { ++nested_it_; - if ( nested_it_ == end( this->base() ) ) { + if ( nested_it_ == this->end( this->base() ) ) { Filter_base_iterator::operator++(); 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_; } else { - if ( nested_it_ != begin( this->base() ) ) { + if ( nested_it_ != this->begin( this->base() ) ) { --nested_it_; } else { Filter_base_iterator::operator--();