removed harmless warnings

This commit is contained in:
Paolo Cignoni 2008-06-30 15:00:47 +00:00
parent d3debc41e4
commit 445cf3bec0
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ class VertexTypeHolder{
typedef BFT *FacePointer;
typedef BTT *TetraPointer;
template < class LeftV>
void ImportLocal(const LeftV & left ) { }
void ImportLocal(const LeftV & /* left */ ) { }
static void Name(std::vector<std::string> & name){}
};

View File

@ -135,7 +135,7 @@ public:
void pop_back();
void resize(const unsigned int & _size)
{
int oldsize = BaseType::size();
const unsigned int oldsize = BaseType::size();
BaseType::resize(_size);
if(oldsize<_size){
ThisTypeIterator firstnew = BaseType::begin();