Use CGAL_USE

This commit is contained in:
Andreas Fabri 2018-04-12 08:13:20 +01:00
parent 6477d8bfa5
commit 36a25cf501
1 changed files with 2 additions and 0 deletions

View File

@ -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);