mirror of https://github.com/CGAL/cgal
add missing ref
This commit is contained in:
parent
21b5f653f6
commit
3175ad74d4
|
|
@ -1925,12 +1925,10 @@ fill_hole_delaunay(std::list<Edge> & first_hole, OutputItFaces fit)
|
|||
Face_handle f, ff, fn;
|
||||
int i, ii, in;
|
||||
Hole_list hole_list;
|
||||
Hole hole;
|
||||
|
||||
hole_list.push_front(first_hole);
|
||||
|
||||
while(!hole_list.empty()) {
|
||||
Hole hole = hole_list.front();
|
||||
Hole& hole = hole_list.front();
|
||||
typename Hole::iterator hit = hole.begin();
|
||||
|
||||
if (hole.size() == 3) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue