From e57aeb554e0e74d6be46353b7da524d69013fd2d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 29 Jun 2017 08:12:59 +0200 Subject: [PATCH] Comment line in order to deal with a warning, but it needs real cleanup as there is a loop that does the same as a commented std::copy so I guess these are left-overs from debugging by @sgiraudot --- .../CGAL/Scale_space_reconstruction_3/Alpha_shape_mesher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 dd8469e7009..e2947a54117 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 @@ -232,7 +232,7 @@ public: for (Facet_iterator it = _surface.begin(); it != _surface.end(); ++ it) { - Facet t = *it; + // Facet t = *it; cpp11::array f = {{ std::size_t((*it)[0]), std::size_t((*it)[1]), std::size_t((*it)[2]) }}; *(output ++) = f; }