From 133ab71f1de2ebc09863aa8d9de0a3f03ef9504e Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Wed, 9 Aug 2017 15:24:57 +0200 Subject: [PATCH] fix warning --- .../poisson_reconstruction_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Poisson_surface_reconstruction_3/test/Poisson_surface_reconstruction_3/poisson_reconstruction_test.cpp b/Poisson_surface_reconstruction_3/test/Poisson_surface_reconstruction_3/poisson_reconstruction_test.cpp index 6e58a90ca00..ee18c4a260d 100644 --- a/Poisson_surface_reconstruction_3/test/Poisson_surface_reconstruction_3/poisson_reconstruction_test.cpp +++ b/Poisson_surface_reconstruction_3/test/Poisson_surface_reconstruction_3/poisson_reconstruction_test.cpp @@ -18,7 +18,7 @@ #include #include #include -#include +#include #include #include #include @@ -286,7 +286,7 @@ int main(int argc, char * argv[]) // Converts to polyhedron Polyhedron output_mesh; - CGAL::output_surface_facets_to_polyhedron(c2t3, output_mesh); + CGAL::facets_in_complex_2_to_triangle_mesh(c2t3, output_mesh); // Prints total reconstruction duration std::cerr << "Total reconstruction (implicit function + meshing): " << reconstruction_timer.time() << " seconds\n";