Merge pull request #415 from LuisAntonRebollo/BitVector_copyConst_fix

Fix BitVector copy constructor.
This commit is contained in:
David Wyand 2013-10-07 12:49:53 -07:00
commit 9d9c6bf7d3

View file

@ -158,6 +158,9 @@ inline BitVector::BitVector( U32 sizeInBits )
inline BitVector::BitVector( const BitVector &r )
{
mBits = NULL;
mByteSize = 0;
mSize = 0;
copy(r);
}