diff options
author | Max Horn | 2002-11-13 13:42:05 +0000 |
---|---|---|
committer | Max Horn | 2002-11-13 13:42:05 +0000 |
commit | de554e2f9d9a389eb30e6ff1953e017a2817935f (patch) | |
tree | 18123ca4f6a5402bc4780615852ed735824d02d8 | |
parent | 9c27a99821693ba71aefb7436e0e1ff86163dc6f (diff) | |
download | scummvm-rg350-de554e2f9d9a389eb30e6ff1953e017a2817935f.tar.gz scummvm-rg350-de554e2f9d9a389eb30e6ff1953e017a2817935f.tar.bz2 scummvm-rg350-de554e2f9d9a389eb30e6ff1953e017a2817935f.zip |
properly init all datacd Projekte/scummvm
svn-id: r5529
-rw-r--r-- | common/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/map.h b/common/map.h index 51e87210ef..ffa54e5994 100644 --- a/common/map.h +++ b/common/map.h @@ -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; |