From b39afe0c182f0478caa06f019646b8ac868dfa19 Mon Sep 17 00:00:00 2001 From: ponchio Date: Fri, 5 Jun 2009 11:08:37 +0000 Subject: [PATCH] gcc complained about perVertexAttributeHandle missing template parameters... --- vcg/complex/trimesh/base.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vcg/complex/trimesh/base.h b/vcg/complex/trimesh/base.h index 5a030928..27b85a5f 100644 --- a/vcg/complex/trimesh/base.h +++ b/vcg/complex/trimesh/base.h @@ -272,19 +272,19 @@ class TriMesh: public TriMeshEdgeHolder class PerVertexAttributeHandle: public AttributeHandle{ PerVertexAttributeHandle():AttributeHandle(){} - public: PerVertexAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; + public: PerVertexAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; }; template class PerFaceAttributeHandle: public AttributeHandle{ PerFaceAttributeHandle():AttributeHandle(){} - public: PerFaceAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; + public: PerFaceAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; }; template class PerEdgeAttributeHandle: public AttributeHandle{ PerEdgeAttributeHandle():AttributeHandle(){} - public: PerEdgeAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; + public: PerEdgeAttributeHandle( void *ah,const int & n):AttributeHandle(ah,n){}; }; template