From 1317c5f847b4a1306fd2d3ab696732d3814a3072 Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Tue, 4 Jul 2017 08:36:25 +0200 Subject: [PATCH] Remove useless commented pieces of code --- .../CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h b/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h index e2947a54117..12d5eff474b 100644 --- a/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h +++ b/Scale_space_reconstruction_3/include/CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h @@ -145,7 +145,6 @@ private: // Map TDS facets to shells Map_facet_to_shell _map_f2s; - // std::map _map_f2s; unsigned int _index; std::vector _bubbles; @@ -232,11 +231,9 @@ public: for (Facet_iterator it = _surface.begin(); it != _surface.end(); ++ it) { - // Facet t = *it; cpp11::array f = {{ std::size_t((*it)[0]), std::size_t((*it)[1]), std::size_t((*it)[2]) }}; *(output ++) = f; } -// std::copy (_surface.begin(), _surface.end(), output); } /// \endcond