mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 21:00:39 +00:00
properly init all datacd Projekte/scummvm
svn-id: r5529
This commit is contained in:
parent
9c27a99821
commit
de554e2f9d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user