Skip to content

Commit

Permalink
Add Cartesian_const_iterator to Bbox
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Dec 17, 2024
1 parent 9b8be5e commit fc120de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kernel_23/include/CGAL/Bbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,12 @@ class Bbox<Dimension_tag<N>, T> : public Impl::Bbox<std::array<T, N>, Bbox<Dimen

Cartesian_const_iterator cartesian_begin() const
{
return Cartesian_const_iterator(min_values.end(), max_values.begin(), min_values.begin());
return Cartesian_const_iterator(this->min_values.end(), this->max_values.begin(), this->min_values.begin());
}

Cartesian_const_iterator cartesian_end() const
{
return Cartesian_const_iterator(min_values.end(), max_values.begin(), max_values.end(),0);
return Cartesian_const_iterator(min_values.end(), this->max_values.begin(), this->max_values.end(),0);
}
};

Expand Down

0 comments on commit fc120de

Please sign in to comment.