From 0dde431ce5b82d52eb07f8fec54cac2f3cdc5984 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 17 Apr 2018 06:51:43 +0100 Subject: [PATCH] Qualify with CGAL:: as is_border cannot be found with ADL for OpenMesh --- BGL/test/BGL/test_Euler_operations.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BGL/test/BGL/test_Euler_operations.cpp b/BGL/test/BGL/test_Euler_operations.cpp index d97d760b944..616ea782b3f 100644 --- a/BGL/test/BGL/test_Euler_operations.cpp +++ b/BGL/test/BGL/test_Euler_operations.cpp @@ -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);