Jelajahi Sumber

fix more uninit ivars, who wrote this junk? :)

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49679 91177308-0d34-0410-b5e6-96231b3b80d8
Chris Lattner 17 tahun lalu
induk
melakukan
70778c8582
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      lib/Rewrite/RewriteRope.cpp

+ 2 - 2
lib/Rewrite/RewriteRope.cpp

@@ -102,7 +102,7 @@ namespace {
     /// efficient in-order forward iteration of the tree without traversal.
     const RopePieceBTreeLeaf *NextLeaf;
   public:
-    RopePieceBTreeLeaf() : RopePieceBTreeNode(true), NextLeaf(0) {}
+    RopePieceBTreeLeaf() : RopePieceBTreeNode(true), NumPieces(0), NextLeaf(0){}
     
     bool isFull() const { return NumPieces == 2*WidthFactor; }
     
@@ -324,7 +324,7 @@ namespace {
     unsigned char NumChildren;
     RopePieceBTreeNode *Children[2*WidthFactor];
   public:
-    RopePieceBTreeInterior() : RopePieceBTreeNode(false) {}
+    RopePieceBTreeInterior() : RopePieceBTreeNode(false), NumChildren(0) {}
     
     RopePieceBTreeInterior(RopePieceBTreeNode *LHS, RopePieceBTreeNode *RHS)
     : RopePieceBTreeNode(false) {