From c5a92fd4c0772543d3aff93541935ca43adaab75 Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 8 Apr 2008 09:51:15 +0000 Subject: [PATCH] added missing std:: --- vcg/complex/trimesh/create/advancing_front.h | 4 ++-- vcg/complex/trimesh/create/ball_pivoting.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vcg/complex/trimesh/create/advancing_front.h b/vcg/complex/trimesh/create/advancing_front.h index 63570553..b6f668e7 100644 --- a/vcg/complex/trimesh/create/advancing_front.h +++ b/vcg/complex/trimesh/create/advancing_front.h @@ -477,9 +477,9 @@ template class AdvancingTest: public AdvancingFront { vn = i; //find the border assert(this->mesh.vert[i].IsB()); - for(list::iterator k = this->front.begin(); k != this->front.end(); k++) + for(std::list::iterator k = this->front.begin(); k != this->front.end(); k++) if((*k).v0 == i) touch = k; - for(list::iterator k = this->deads.begin(); k != this->deads.end(); k++) + for(std::list::iterator k = this->deads.begin(); k != this->deads.end(); k++) if((*k).v0 == i) touch = k; break; } diff --git a/vcg/complex/trimesh/create/ball_pivoting.h b/vcg/complex/trimesh/create/ball_pivoting.h index 614f8060..a49a6de1 100644 --- a/vcg/complex/trimesh/create/ball_pivoting.h +++ b/vcg/complex/trimesh/create/ball_pivoting.h @@ -309,9 +309,9 @@ template class BallPivoting: public AdvancingFront { } //test if id is in some border (to return touch - for(list::iterator k = this->front.begin(); k != this->front.end(); k++) + for(std::list::iterator k = this->front.begin(); k != this->front.end(); k++) if((*k).v0 == id) touch = k; - for(list::iterator k = this->deads.begin(); k != this->deads.end(); k++) + for(std::list::iterator k = this->deads.begin(); k != this->deads.end(); k++) if((*k).v0 == id) touch = k; //mark vertices close to candidate