Initialize the members of List<T>

This commit is contained in:
Roberto Raggi
2009-10-21 17:01:40 +02:00
parent 98bde3dda7
commit 245a2ca2b3

View File

@@ -64,6 +64,7 @@ class List: public Managed
public:
List()
: value(_Tp()), next(0)
{ }
_Tp value;