remove warning

This commit is contained in:
Sylvain Pion 2007-03-03 08:57:28 +00:00
parent dc16641bec
commit 71e2a5ca6e
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ protected:
}
void set_vertex_to_edge_map( size_type i, Halfedge_handle h, Tag_false) {
// Use the self-managed array vertex_to_edge_map.
CGAL_assertion(i>=0 && i < vertex_to_edge_map.size());
CGAL_assertion(i < vertex_to_edge_map.size());
vertex_to_edge_map[i] = h;
}
void set_vertex_to_edge_map( size_type i, Halfedge_handle h) {