add missing namespace

This commit is contained in:
Sébastien Loriot 2016-11-16 22:13:21 +01:00
parent a477646fe0
commit 16f1b07adc
1 changed files with 1 additions and 1 deletions

View File

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