From 5e4e9692524550fcc7fa6906aad1f33c861929ed Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Wed, 18 Dec 2024 13:29:09 +0100 Subject: [PATCH] removing property map type declaration --- Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp b/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp index a2f951ca842..5ca139605b7 100644 --- a/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp +++ b/Isosurfacing_3/test/Isosurfacing_3/test_topology.cpp @@ -15,7 +15,6 @@ #include #include #include -#include #include @@ -32,9 +31,8 @@ template std::size_t connected_components(PolygonMesh& mesh) { using face_descriptor = typename boost::graph_traits::face_descriptor; - using FCCmap = typename PolygonMesh::template Property_map; - FCCmap fccmap = mesh.template add_property_map("f:CC").first; + auto fccmap = mesh.template add_property_map("f:CC").first; return CGAL::Polygon_mesh_processing::connected_components(mesh, fccmap); }