Exemplo n.º 1
0
BitVector::BitVector( const BitVector& rhs )
	:	mData( nullptr )
	,	mSize( rhs.Size() )
	,	mAllocSize( 0 )
{
	*this = rhs;
}