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); }