From d76c1638072462d6c31045f1b6df89d5597fee1f Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Mon, 11 Feb 2019 09:39:26 +0100 Subject: [PATCH] Fix the Final Fixes --- .../include/CGAL/boost/graph/properties_Surface_mesh_features.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh/include/CGAL/boost/graph/properties_Surface_mesh_features.h b/Surface_mesh/include/CGAL/boost/graph/properties_Surface_mesh_features.h index 8cd0756cd5f..0f3706f83a3 100644 --- a/Surface_mesh/include/CGAL/boost/graph/properties_Surface_mesh_features.h +++ b/Surface_mesh/include/CGAL/boost/graph/properties_Surface_mesh_features.h @@ -140,7 +140,7 @@ CGAL_PROPERTY_SURFACE_MESH_RETURN_TYPE(CGAL::edge_is_feature_t) inline get(CGAL::edge_is_feature_t, const Surface_mesh

& smesh) { typedef typename boost::graph_traits >::edge_descriptor edge_descriptor; - return smesh. template property_map("e:is_feature", false).first; + return smesh. template property_map("e:is_feature").first; }