Constify two methods that can be const

This commit is contained in:
Laurent Rineau 2013-10-08 16:54:34 +02:00
parent 72deb04640
commit 85d880efc1
1 changed files with 2 additions and 2 deletions

View File

@ -1486,7 +1486,7 @@ private:
}
template <typename CellRange>
void reset_sliver_cache(CellRange& cell_range)
void reset_sliver_cache(CellRange& cell_range) const
{
reset_sliver_cache(boost::begin(cell_range),
boost::end(cell_range));
@ -1503,7 +1503,7 @@ private:
}
template <typename CellRange>
void reset_circumcenter_cache(CellRange& cell_range)
void reset_circumcenter_cache(CellRange& cell_range) const
{
reset_circumcenter_cache(boost::begin(cell_range),
boost::end(cell_range));