Missing a ;

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34322 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2007-02-15 19:29:05 +00:00
parent d263114d7a
commit 852b4baf47

View File

@ -98,7 +98,7 @@ public:
else if (sizeof(BitWord) == 8)
NumBits += CountPopulation_64(Bits[i]);
else
assert(0 && "Unsupported!")
assert(0 && "Unsupported!");
return NumBits;
}
@ -160,8 +160,7 @@ public:
init_words(&Bits[OldCapacity], (Capacity-OldCapacity), t);
}
Size = N;
if (t)
clear_unused_bits();
clear_unused_bits();
}
void reserve(unsigned N) {