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

@@ -41,7 +41,7 @@ ExplicitBitVect::ExplicitBitVect(const char *data,const unsigned int dataLen)
initFromText(data,dataLen);
}
ExplicitBitVect::ExplicitBitVect(const ExplicitBitVect& other){
ExplicitBitVect::ExplicitBitVect(const ExplicitBitVect& other) : BitVect(other) {
d_size = other.d_size;
dp_bits = new boost::dynamic_bitset<>(*(other.dp_bits));
d_numOnBits=other.d_numOnBits;