Fix the Final Fixes

This commit is contained in:
Maxime Gimeno 2019-02-11 09:39:26 +01:00
parent 64cf08ddc1
commit d76c163807
1 changed files with 1 additions and 1 deletions

View File

@ -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<P>& smesh)
{
typedef typename boost::graph_traits<Surface_mesh<P> >::edge_descriptor edge_descriptor;
return smesh. template property_map<edge_descriptor,bool>("e:is_feature", false).first;
return smesh. template property_map<edge_descriptor,bool>("e:is_feature").first;
}