Hrm, how could this compile?

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10263 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-11-29 19:55:02 +00:00
parent 9e6f686559
commit d2aa7b8ee7
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ public:
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() {

View File

@ -36,7 +36,7 @@ public:
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() {