removed harmless warnings
This commit is contained in:
parent
d3debc41e4
commit
445cf3bec0
|
@ -94,7 +94,7 @@ class VertexTypeHolder{
|
||||||
typedef BFT *FacePointer;
|
typedef BFT *FacePointer;
|
||||||
typedef BTT *TetraPointer;
|
typedef BTT *TetraPointer;
|
||||||
template < class LeftV>
|
template < class LeftV>
|
||||||
void ImportLocal(const LeftV & left ) { }
|
void ImportLocal(const LeftV & /* left */ ) { }
|
||||||
static void Name(std::vector<std::string> & name){}
|
static void Name(std::vector<std::string> & name){}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -135,7 +135,7 @@ public:
|
||||||
void pop_back();
|
void pop_back();
|
||||||
void resize(const unsigned int & _size)
|
void resize(const unsigned int & _size)
|
||||||
{
|
{
|
||||||
int oldsize = BaseType::size();
|
const unsigned int oldsize = BaseType::size();
|
||||||
BaseType::resize(_size);
|
BaseType::resize(_size);
|
||||||
if(oldsize<_size){
|
if(oldsize<_size){
|
||||||
ThisTypeIterator firstnew = BaseType::begin();
|
ThisTypeIterator firstnew = BaseType::begin();
|
||||||
|
|
Loading…
Reference in New Issue