From 16f1b07adc8adcd93c5384d7a7dcb2577fc7e1f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 16 Nov 2016 22:13:21 +0100 Subject: [PATCH] add missing namespace --- .../include/CGAL/Surface_mesh_simplification/edge_collapse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh_simplification/include/CGAL/Surface_mesh_simplification/edge_collapse.h b/Surface_mesh_simplification/include/CGAL/Surface_mesh_simplification/edge_collapse.h index 4ee50c42eb4..a9434b3ab9b 100644 --- a/Surface_mesh_simplification/include/CGAL/Surface_mesh_simplification/edge_collapse.h +++ b/Surface_mesh_simplification/include/CGAL/Surface_mesh_simplification/edge_collapse.h @@ -151,7 +151,7 @@ int edge_collapse ( ECM& aSurface template 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