From 94235fc54804a615f6de56f55a158f825a912b22 Mon Sep 17 00:00:00 2001 From: cignoni Date: Tue, 21 Dec 2010 15:06:09 +0000 Subject: [PATCH] commented useless parameter to avoid warning --- vcg/complex/trimesh/allocate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/trimesh/allocate.h b/vcg/complex/trimesh/allocate.h index 725617c5..4ce1b582 100644 --- a/vcg/complex/trimesh/allocate.h +++ b/vcg/complex/trimesh/allocate.h @@ -63,7 +63,7 @@ namespace vcg { } template - void ResizeAttribute(ATTR_CONT &c,const int & sz , MeshType &m){ + void ResizeAttribute(ATTR_CONT &c,const int & sz , MeshType &/*m*/){ typename std::set::iterator ai; for(ai =c.begin(); ai != c.end(); ++ai) ((typename MeshType::PointerToAttribute)(*ai)).Resize(sz);