From 645cb8223f4b8a80e5474a67c6094beab54a3796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 31 Mar 2022 23:25:36 +0200 Subject: [PATCH] CGAL::IO > PMP::IO for input robustness --- .../edge_collapse_garland_heckbert_variations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh_simplification/test/Surface_mesh_simplification/edge_collapse_garland_heckbert_variations.cpp b/Surface_mesh_simplification/test/Surface_mesh_simplification/edge_collapse_garland_heckbert_variations.cpp index 52fc0248fda..9a2dde4bf25 100644 --- a/Surface_mesh_simplification/test/Surface_mesh_simplification/edge_collapse_garland_heckbert_variations.cpp +++ b/Surface_mesh_simplification/test/Surface_mesh_simplification/edge_collapse_garland_heckbert_variations.cpp @@ -52,7 +52,7 @@ bool read_from_file(const std::string& filename, // make sure the mesh is empty and ready for the next set of data clear(mesh); - if(!CGAL::IO::read_polygon_mesh(filename, mesh)) + if(!PMP::IO::read_polygon_mesh(filename, mesh)) { std::cerr << "Error: failed to read input: " << filename << std::endl; return false;