named parameters are in parameters namespace

This commit is contained in:
Sébastien Loriot 2015-03-17 14:24:19 +01:00
parent 9cf0a3fd37
commit cd60cfc2d2
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ int edge_collapse ( ECM& aSurface, ShouldStop const& aShould_stop )
template<class ECM, class ShouldStop, class GT>
int edge_collapse ( ECM& aSurface, ShouldStop const& aShould_stop)
{
return edge_collapse(aSurface,aShould_stop, CGAL::halfedge_index_map(get(boost::halfedge_index,aSurface)));
return edge_collapse(aSurface,aShould_stop, CGAL::parameters::halfedge_index_map(get(boost::halfedge_index,aSurface)));
}
} // namespace Surface_mesh_simplification