mirror of https://github.com/CGAL/cgal
remove extra const
This commit is contained in:
parent
e7bfe4cb6f
commit
0a530e39e7
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue