add missing ref

This commit is contained in:
Jane Tournois 2015-09-08 16:33:39 +02:00
parent 21b5f653f6
commit 3175ad74d4
1 changed files with 1 additions and 3 deletions

View File

@ -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) {