commented useless parameter to avoid warning

This commit is contained in:
Paolo Cignoni 2010-12-21 15:06:09 +00:00
parent 377333e805
commit 94235fc548
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ namespace vcg {
} }
template <class MeshType, class ATTR_CONT> template <class MeshType, class ATTR_CONT>
void ResizeAttribute(ATTR_CONT &c,const int & sz , MeshType &m){ void ResizeAttribute(ATTR_CONT &c,const int & sz , MeshType &/*m*/){
typename std::set<typename MeshType::PointerToAttribute>::iterator ai; typename std::set<typename MeshType::PointerToAttribute>::iterator ai;
for(ai =c.begin(); ai != c.end(); ++ai) for(ai =c.begin(); ai != c.end(); ++ai)
((typename MeshType::PointerToAttribute)(*ai)).Resize(sz); ((typename MeshType::PointerToAttribute)(*ai)).Resize(sz);