[Scummvm-cvs-logs] CVS: scummvm/common map.h,1.5,1.6

Max Horn fingolfin at users.sourceforge.net
Wed Nov 13 05:43:01 CET 2002


Update of /cvsroot/scummvm/scummvm/common
In directory usw-pr-cvs1:/tmp/cvs-serv7236/common

Modified Files:
	map.h 
Log Message:
properly init all datacd Projekte/scummvm

Index: map.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/map.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- map.h	22 Oct 2002 11:32:12 -0000	1.5
+++ map.h	13 Nov 2002 13:42:05 -0000	1.6
@@ -33,8 +33,8 @@
 		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;





More information about the Scummvm-git-logs mailing list