removed harmless warnings

This commit is contained in:
Paolo Cignoni 2010-02-24 09:56:58 +00:00
parent 9f8497013f
commit 355edd042e
2 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ public:
// Final Clean up after the end of the simplification process
static void Finalize(TriMeshType &m,HeapType&h_ret)
static void Finalize(TriMeshType &m, HeapType& /*h_ret*/)
{
// if the mesh was prepared with precomputed borderflags
// correctly set them again.

View File

@ -52,7 +52,7 @@ namespace vcg {
void ReorderFace( std::vector<size_t> & /*newVertIndex*/, std::vector<face_type> & /*vert*/)
{}
template <class vertex_type>
void ReorderVert( std::vector<size_t> &newVertIndex, std::vector<vertex_type> &vert)
void ReorderVert( std::vector<size_t> &/*newVertIndex*/, std::vector<vertex_type> &/*vert*/)
{}
template <class MeshType, class ATTR_CONT>