reorder initialization list to match declaration order

This commit is contained in:
Martin Hollmichel 2001-09-28 13:32:42 +00:00
parent 7654d8008a
commit 5bf13559ed

View file

@ -2,9 +2,9 @@
* *
* $RCSfile: list.hxx,v $ * $RCSfile: list.hxx,v $
* *
* $Revision: 1.4 $ * $Revision: 1.5 $
* *
* last change: $Author: np $ $Date: 2001-03-23 13:23:17 $ * last change: $Author: mh $ $Date: 2001-09-28 14:32:42 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@ -156,8 +156,8 @@ class DynamicList : public List<XY*>
template <class XX> template <class XX>
List<XX>::List() List<XX>::List()
: len(0), : inhalt(0),
inhalt(0) len(0)
{ {
alloc(1); alloc(1);
} }