remove extra this->container (detected by intel compiler)

This commit is contained in:
Sébastien Loriot 2010-04-26 08:16:15 +00:00
parent 6da19089e5
commit fe96061a32
1 changed files with 3 additions and 3 deletions

View File

@ -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<(