[llvm-commits] CVS: llvm/include/Support/Tree.h

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 29 13:56:01 PST 2003


Changes in directory llvm/include/Support:

Tree.h updated: 1.9 -> 1.10

---
Log message:

Hrm, how could this compile?


---
Diffs of the changes:  (+1 -1)

Index: llvm/include/Support/Tree.h
diff -u llvm/include/Support/Tree.h:1.9 llvm/include/Support/Tree.h:1.10
--- llvm/include/Support/Tree.h:1.9	Tue Nov 11 16:41:29 2003
+++ llvm/include/Support/Tree.h	Sat Nov 29 13:55:02 2003
@@ -36,7 +36,7 @@
 
   inline Tree(const std::vector<ConcreteTreeNode*> &children,
               ConcreteTreeNode *par, const Payload &data) 
-    : Children(children), Parent(parent), Data(data) {}
+    : Children(children), Parent(par), Data(data) {}
 
   // Tree dtor - Free all children
   inline ~Tree() {





More information about the llvm-commits mailing list