Actually, this tree isn't necessarily binary.

llvm-svn: 154762
This commit is contained in:
Benjamin Kramer 2012-04-15 11:35:18 +00:00
parent 779a72b49e
commit ccdf735e52
1 changed files with 2 additions and 2 deletions

View File

@ -408,8 +408,8 @@ namespace {
}
~RopePieceBTreeInterior() {
Children[0]->Destroy();
Children[1]->Destroy();
for (unsigned i = 0, e = getNumChildren(); i != e; ++i)
Children[i]->Destroy();
}
bool isFull() const { return NumChildren == 2*WidthFactor; }