From 9e5788c078e51e906612dc0261792305993e056d Mon Sep 17 00:00:00 2001 From: cignoni Date: Mon, 6 Feb 2006 10:45:47 +0000 Subject: [PATCH] Added missing typenames --- vcg/complex/trimesh/smooth.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/complex/trimesh/smooth.h b/vcg/complex/trimesh/smooth.h index 28d02244..438f5ec0 100644 --- a/vcg/complex/trimesh/smooth.h +++ b/vcg/complex/trimesh/smooth.h @@ -685,8 +685,8 @@ void FitMesh(MESH_TYPE &m, //vcg::face::Pos ep; vcg::face::VFIterator ep; typename MESH_TYPE::VertexIterator vi; - typedef MESH_TYPE::ScalarType ScalarType; - typedef MESH_TYPE::CoordType CoordType; + typedef typename MESH_TYPE::ScalarType ScalarType; + typedef typename MESH_TYPE::CoordType CoordType; for(vi=m.vert.begin();vi!=m.vert.end();++vi) { CoordType ErrGrad=CoordType(0,0,0);