properly init all datacd Projekte/scummvm

svn-id: r5529
This commit is contained in:
Max Horn 2002-11-13 13:42:05 +00:00
parent 9c27a99821
commit de554e2f9d

View File

@ -33,8 +33,8 @@ protected:
Node *_left, *_right;
Key _key;
Value _value;
Node() {}
Node(const Key &key, Node *parent) : _parent(parent), _key(key) {}
Node() : _parent(0), _left(0), _right(0) {}
Node(const Key &key, Node *parent) : _parent(parent), _left(0), _right(0), _key(key) {}
};
Node *_root;