Fix an assertion ted was hitting, due to an uninitialized variable.
llvm-svn: 49678
This commit is contained in:
@@ -53,7 +53,7 @@ namespace {
|
|||||||
/// is an instance of RopePieceBTreeInterior.
|
/// is an instance of RopePieceBTreeInterior.
|
||||||
bool IsLeaf;
|
bool IsLeaf;
|
||||||
|
|
||||||
RopePieceBTreeNode(bool isLeaf) : IsLeaf(isLeaf) {}
|
RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {}
|
||||||
~RopePieceBTreeNode() {}
|
~RopePieceBTreeNode() {}
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user