forked from OSchip/llvm-project
Fix an assertion ted was hitting, due to an uninitialized variable.
llvm-svn: 49678
This commit is contained in:
parent
193f185902
commit
ca94e4263b
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue