fixed the signature of flip

This commit is contained in:
Mariette Yvinec 2000-12-21 15:20:54 +00:00
parent f299cb5a29
commit 5b1e33d68f
1 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ public:
//INSERTION - DELETION - Flip
public:
void flip(Face_handle& f, int i);
void flip(Face_handle f, int i);
Vertex_handle insert_first(const Point& p);
Vertex_handle insert_second(const Point& p);
@ -712,7 +712,7 @@ segment(const All_edges_iterator& ei) const
template <class Gt, class Tds >
void
Triangulation_2<Gt, Tds>::
flip(Face_handle& f, int i)
flip(Face_handle f, int i)
{
CGAL_triangulation_precondition ( ! f.is_null() );
CGAL_triangulation_precondition (i == 0 || i == 1 || i == 2);