get rid of some more warnings

This commit is contained in:
Greg Landrum
2015-11-14 09:21:05 +01:00
parent b83b71aac0
commit 2a75463959
5 changed files with 7 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ public:
explicit SparseBitVect(unsigned int size): dp_bits(0), d_size(0) {_initForSize(size); };
//! copy constructor
SparseBitVect(const SparseBitVect& other){
SparseBitVect(const SparseBitVect& other) : BitVect(other) {
d_size=0;dp_bits = 0;
_initForSize(other.getNumBits());
IntSet *bv=other.dp_bits;