mirror of https://github.com/CGAL/cgal
avoid a warning in release mode
This commit is contained in:
parent
b7db87ab40
commit
27b011789c
|
|
@ -1114,7 +1114,8 @@ bool remove_self_intersections(TriangleMesh& tm, const int max_steps = 7, bool v
|
||||||
BOOST_FOREACH(halfedge_descriptor hh, halfedges_around_face(h, tm))
|
BOOST_FOREACH(halfedge_descriptor hh, halfedges_around_face(h, tm))
|
||||||
{
|
{
|
||||||
CGAL_assertion_code(bool insert_ok =)
|
CGAL_assertion_code(bool insert_ok =)
|
||||||
visited.insert(hh).second;
|
visited.insert(hh)
|
||||||
|
CGAL_assertion_code(.second);
|
||||||
CGAL_assertion(insert_ok || h==hh);
|
CGAL_assertion(insert_ok || h==hh);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue