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>
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;
for(ai =c.begin(); ai != c.end(); ++ai)
((typename MeshType::PointerToAttribute)(*ai)).Resize(sz);