From 6a50f2173611c1f20772f137a10324903a8ea88b Mon Sep 17 00:00:00 2001 From: cignoni Date: Sat, 25 Aug 2007 08:42:10 +0000 Subject: [PATCH] added missing typenames --- wrap/io_trimesh/import_dae.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/io_trimesh/import_dae.h b/wrap/io_trimesh/import_dae.h index a7f6d8b4..8c86f3f2 100644 --- a/wrap/io_trimesh/import_dae.h +++ b/wrap/io_trimesh/import_dae.h @@ -73,7 +73,7 @@ namespace io { static DAEError LoadPolygonalListMesh(QDomNodeList& polylist,OpenMeshType& m,const size_t offset,AdditionalInfoDAE* info) { PolygonalMesh pm; - for(OpenMeshType::VertexIterator itv = m.vert.begin();itv != m.vert.end();++itv) + for(typename OpenMeshType::VertexIterator itv = m.vert.begin();itv != m.vert.end();++itv) { vcg::Point3f p(itv->P().X(),itv->P().Y(),itv->P().Z()); pm.vert.push_back(p);