Qualify with CGAL:: as is_border cannot be found with ADL for OpenMesh

This commit is contained in:
Andreas Fabri 2018-04-17 06:51:43 +01:00
parent a06c5aaee7
commit 0dde431ce5
1 changed files with 2 additions and 2 deletions

View File

@ -160,8 +160,8 @@ add_vertex_and_face_to_border_test()
halfedge_descriptor res = CGAL::Euler::add_vertex_and_face_to_border(f.h1, f.h2, f.m);
assert(CGAL::is_valid(f.m));
assert(! is_border(res,m));
assert(is_border(opposite(res,m),m));
assert(! CGAL::is_border(res,m));
assert(CGAL::is_border(opposite(res,m),m));
res = opposite(res,m);
BOOST_FOREACH(halfedge_descriptor hd, CGAL::halfedges_around_face(res,m)){
CGAL_USE(hd);