mirror of https://github.com/CGAL/cgal
replaced call to assert by call to CGAL_assertion
This commit is contained in:
parent
ae293d3eee
commit
2cb3f533a3
|
|
@ -2,6 +2,8 @@
|
|||
- fixes in #includes: correct files are now included
|
||||
- added mixed traits classes, filtered and non-filtered
|
||||
- removed obsolete code
|
||||
- replaced call to assert by call to CGAL_assertion in
|
||||
Apollonius_graph_2_impl.h
|
||||
|
||||
19 July 2006: Menelaos Karavelas
|
||||
- further CGALization of new traits functors/classes
|
||||
|
|
|
|||
|
|
@ -1794,7 +1794,7 @@ remove_degree_d_vertex(Vertex_handle v)
|
|||
|
||||
Vertex_handle vn = ag_small.nearest_neighbor(v->site().point());
|
||||
|
||||
assert( vn != Vertex_handle() );
|
||||
CGAL_assertion( vn != Vertex_handle() );
|
||||
|
||||
List l;
|
||||
Face_map fm;
|
||||
|
|
|
|||
Loading…
Reference in New Issue