Call function with CGAL::

This commit is contained in:
Andreas Fabri 2018-04-13 09:37:10 +01:00
parent 36a25cf501
commit a06c5aaee7
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ add_vertex_and_face_to_border_test()
assert(dist == 2); assert(dist == 2);
int blength = 0; int blength = 0;
BOOST_FOREACH(halfedge_descriptor hd, halfedges_around_face(h1,m)){ BOOST_FOREACH(halfedge_descriptor hd, CGAL::halfedges_around_face(h1,m)){
CGAL_USE(hd); CGAL_USE(hd);
blength++; blength++;
} }
@ -163,7 +163,7 @@ add_vertex_and_face_to_border_test()
assert(! is_border(res,m)); assert(! is_border(res,m));
assert(is_border(opposite(res,m),m)); assert(is_border(opposite(res,m),m));
res = opposite(res,m); res = opposite(res,m);
BOOST_FOREACH(halfedge_descriptor hd, halfedges_around_face(res,m)){ BOOST_FOREACH(halfedge_descriptor hd, CGAL::halfedges_around_face(res,m)){
CGAL_USE(hd); CGAL_USE(hd);
blength--; blength--;
} }