Fix an assertion ted was hitting, due to an uninitialized variable.

llvm-svn: 49678
This commit is contained in:
Chris Lattner 2008-04-14 20:05:32 +00:00
parent 193f185902
commit ca94e4263b
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ namespace {
/// is an instance of RopePieceBTreeInterior.
bool IsLeaf;
RopePieceBTreeNode(bool isLeaf) : IsLeaf(isLeaf) {}
RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
~RopePieceBTreeNode() {}
public: