added missing std::

This commit is contained in:
Paolo Cignoni 2008-04-08 09:51:15 +00:00
parent a8e1f18844
commit c5a92fd4c0
2 changed files with 4 additions and 4 deletions

View File

@ -477,9 +477,9 @@ template <class MESH> class AdvancingTest: public AdvancingFront<MESH> {
vn = i;
//find the border
assert(this->mesh.vert[i].IsB());
for(list<FrontEdge>::iterator k = this->front.begin(); k != this->front.end(); k++)
for(std::list<FrontEdge>::iterator k = this->front.begin(); k != this->front.end(); k++)
if((*k).v0 == i) touch = k;
for(list<FrontEdge>::iterator k = this->deads.begin(); k != this->deads.end(); k++)
for(std::list<FrontEdge>::iterator k = this->deads.begin(); k != this->deads.end(); k++)
if((*k).v0 == i) touch = k;
break;
}

View File

@ -309,9 +309,9 @@ template <class MESH> class BallPivoting: public AdvancingFront<MESH> {
}
//test if id is in some border (to return touch
for(list<FrontEdge>::iterator k = this->front.begin(); k != this->front.end(); k++)
for(std::list<FrontEdge>::iterator k = this->front.begin(); k != this->front.end(); k++)
if((*k).v0 == id) touch = k;
for(list<FrontEdge>::iterator k = this->deads.begin(); k != this->deads.end(); k++)
for(std::list<FrontEdge>::iterator k = this->deads.begin(); k != this->deads.end(); k++)
if((*k).v0 == id) touch = k;
//mark vertices close to candidate