From 36a25cf501fb80f906d85baf82fef61f9e5afbf5 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 12 Apr 2018 08:13:20 +0100 Subject: [PATCH] Use CGAL_USE --- BGL/test/BGL/test_Euler_operations.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BGL/test/BGL/test_Euler_operations.cpp b/BGL/test/BGL/test_Euler_operations.cpp index 3a720f4e677..2fd060e7f32 100644 --- a/BGL/test/BGL/test_Euler_operations.cpp +++ b/BGL/test/BGL/test_Euler_operations.cpp @@ -153,6 +153,7 @@ add_vertex_and_face_to_border_test() int blength = 0; BOOST_FOREACH(halfedge_descriptor hd, halfedges_around_face(h1,m)){ + CGAL_USE(hd); blength++; } @@ -163,6 +164,7 @@ add_vertex_and_face_to_border_test() assert(is_border(opposite(res,m),m)); res = opposite(res,m); BOOST_FOREACH(halfedge_descriptor hd, halfedges_around_face(res,m)){ + CGAL_USE(hd); blength--; } assert(blength == 0);