From 878ba3fc537a4f665c3c9861d11e686b5c4d113f Mon Sep 17 00:00:00 2001 From: Sebastien Loriot Date: Fri, 17 Oct 2025 10:28:57 +0200 Subject: [PATCH] suggestions from Mael Co-authored-by: Mael --- Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h b/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h index 0ccb978a0e4..ed2f33981b0 100644 --- a/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h +++ b/Surface_mesh/include/CGAL/Surface_mesh/IO/PLY.h @@ -431,13 +431,14 @@ bool fill_simplex_specific_header(std::ostream& os, { using CGAL::parameters::choose_parameter; using CGAL::parameters::get_parameter; + typedef Surface_mesh SMesh; typedef typename SMesh::Vertex_index VIndex; typedef typename Kernel_traits::Kernel Kernel; typedef typename Kernel::FT FT; typedef typename Kernel::Vector_3 Vector; - typedef typename GetVertexPointMap, NamedParameter>::const_type Point_map; + typedef typename GetVertexPointMap::const_type Point_map; typedef typename SMesh::template Property_map Vector_map; typedef typename SMesh::template Property_map Vcolor_map; @@ -510,7 +511,6 @@ bool fill_simplex_specific_header(std::ostream& os, auto fvnm = CGAL::make_cartesian_converter_property_map(*pmap); printers.push_back(new Property_printer(fvnm)); } - // printers.push_back(new Property_printer(*pmap)); return true; } }