From 1bc21300da69a9bc77fa820a9079e728b5ce0982 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 28 Jan 2005 11:59:35 +0000 Subject: [PATCH] Add std:: to stl containers --- vcg/complex/trimesh/clean.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/complex/trimesh/clean.h b/vcg/complex/trimesh/clean.h index 982622e9..80c9314c 100644 --- a/vcg/complex/trimesh/clean.h +++ b/vcg/complex/trimesh/clean.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.5 2004/09/20 08:37:57 cignoni +Better Doxygen docs + Revision 1.4 2004/08/25 15:15:26 ganovelli minor changes to comply gcc compiler (typename's and stuff) @@ -87,7 +90,7 @@ static int RemoveDuplicateVertex( MeshType & m ) // V1.0 int deleted=0; int k=0; int num_vert = m.vert.size(); - vector perm(num_vert); + std::vector perm(num_vert); for(vi=m.vert.begin(); vi!=m.vert.end(); ++vi, ++k) perm[k] = &(*vi);