From ed1e777525032337f49889f6f08d49d9413a277a Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 19 Jan 2022 07:22:27 +0000 Subject: [PATCH] Deal with BGL --- BGL/test/BGL/test_Face_filtered_graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BGL/test/BGL/test_Face_filtered_graph.cpp b/BGL/test/BGL/test_Face_filtered_graph.cpp index 5842dd9fb83..12eb4f5fd73 100644 --- a/BGL/test/BGL/test_Face_filtered_graph.cpp +++ b/BGL/test/BGL/test_Face_filtered_graph.cpp @@ -423,7 +423,7 @@ void test_mesh(Adapter fga) assert(num_halfedges(fga) == 10); assert(num_vertices(fga) == 4); halfedge_descriptor h = halfedge(*faces(fga).first, fga); - CGAL_assertion_code( vertex_descriptor v = source(h, fga)); + vertex_descriptor v = source(h, fga); //check that next() works inside the patch assert(next(next(next(h, fga), fga), fga) == h); //check that next() works on bordure of the patch