diff --git a/Polygon/include/CGAL/Polygon_2/Polygon_2_edge_circulator.h b/Polygon/include/CGAL/Polygon_2/Polygon_2_edge_circulator.h index cfe7e8cbaa8..d8b8fd662fd 100644 --- a/Polygon/include/CGAL/Polygon_2/Polygon_2_edge_circulator.h +++ b/Polygon/include/CGAL/Polygon_2/Polygon_2_edge_circulator.h @@ -132,7 +132,7 @@ class Polygon_2_const_edge_circulator { operator+(difference_type n) const { return Polygon_2_const_edge_circulator<_Traits, _Container>( - this->container, first_vertex + n); + first_vertex + n); } Polygon_2_const_edge_circulator<_Traits, _Container>& @@ -145,7 +145,7 @@ class Polygon_2_const_edge_circulator { operator-(difference_type n) const { return Polygon_2_const_edge_circulator<_Traits, _Container>( - this->container, first_vertex - n); + first_vertex - n); } difference_type @@ -158,7 +158,7 @@ class Polygon_2_const_edge_circulator { Segment_2 operator[](int n) const { return *Polygon_2_const_edge_circulator<_Traits, _Container>( - this->container, first_vertex+n); + first_vertex+n); } bool operator<(