From 0a530e39e755c10106a48a92ec8e76b7212230d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 20 Jul 2020 15:28:50 +0200 Subject: [PATCH] remove extra const --- .../include/CGAL/Triangulation_segment_traverser_3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h b/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h index 6ad67f22c44..113dca8b6dc 100644 --- a/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h +++ b/Triangulation_3/include/CGAL/Triangulation_segment_traverser_3.h @@ -271,7 +271,7 @@ public: // provides a conversion operator. /* \return a handle to the current cell. */ - operator const Cell_handle() const + operator Cell_handle() const { return std::get<0>(_cur); } @@ -279,7 +279,7 @@ public: // provides a conversion operator. /* \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()`. /* If the `target()` lies on a facet, edge, or vertex, the final cell is the cell containing