operator =

This commit is contained in:
David Rose 2006-01-21 00:51:16 +00:00
parent eaf21c7e2b
commit 9164535479

View File

@ -60,6 +60,7 @@ BitArray(const BitArray &copy) :
INLINE void BitArray::
operator = (const BitArray &copy) {
_array = copy._array;
_highest_bits = copy._highest_bits;
}
////////////////////////////////////////////////////////////////////