diff --git a/Triangulation_3/include/CGAL/Triangulation_3.h b/Triangulation_3/include/CGAL/Triangulation_3.h index a60b57f9676..20f76735e6b 100644 --- a/Triangulation_3/include/CGAL/Triangulation_3.h +++ b/Triangulation_3/include/CGAL/Triangulation_3.h @@ -4229,21 +4229,19 @@ make_canonical_oriented_triple(Vertex_triple& t) const Vertex_handle tmp; switch(i) { - case 0: break; + case 0: return; case 1: tmp = t.first; t.first = t.second; t.second = t.third; t.third = tmp; - break; + return; default: tmp = t.first; t.first = t.third; t.third = t.second; t.second = tmp; } - - CGAL_assertion(t.first < t.second && t.first < t.third); } template < class GT, class Tds, class Lds >