remove extra const

This commit is contained in:
Sébastien Loriot 2020-07-20 15:28:50 +02:00
parent e7bfe4cb6f
commit 0a530e39e7
1 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ public:
// provides a conversion operator. // provides a conversion operator.
/* \return a handle to the current cell. /* \return a handle to the current cell.
*/ */
operator const Cell_handle() const operator Cell_handle() const
{ {
return std::get<0>(_cur); return std::get<0>(_cur);
} }
@ -279,7 +279,7 @@ public:
// provides a conversion operator. // provides a conversion operator.
/* \return the simplex through wich the current cell was entered. /* \return the simplex through wich the current cell was entered.
*/ */
operator const Simplex() const { return _cur; } operator Simplex() const { return _cur; }
// checks whether the iterator has reached the final cell, which contains the `target()`. // checks whether the iterator has reached the final cell, which contains the `target()`.
/* If the `target()` lies on a facet, edge, or vertex, the final cell is the cell containing /* If the `target()` lies on a facet, edge, or vertex, the final cell is the cell containing