From ad6a7183c5bd7d13f71cae09e0c8d429de7bb2af Mon Sep 17 00:00:00 2001 From: Dmitry Anisimov Date: Fri, 18 Jun 2021 14:47:32 +0200 Subject: [PATCH] added missing IO ns --- .../test_hausdorff_bounded_error_distance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/test_hausdorff_bounded_error_distance.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/test_hausdorff_bounded_error_distance.cpp index 8079da33ace..f7d54f0a9e2 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/test_hausdorff_bounded_error_distance.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/test_hausdorff_bounded_error_distance.cpp @@ -102,7 +102,7 @@ void get_meshes( template void save_mesh(const PolygonMesh& mesh, const std::string filepath) { - if (!CGAL::write_PLY(filepath + ".ply", mesh)) { + if (!CGAL::IO::write_PLY(filepath + ".ply", mesh)) { std::cerr << "ERROR: cannot save this file: " << filepath << std::endl; exit(EXIT_FAILURE); }