From: <sp...@us...> - 2004-03-10 12:06:31
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5673/rtk Modified Files: SList.h Log Message: Reordered field initialization in constructor Index: SList.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/SList.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** SList.h 11 Feb 2004 12:29:29 -0000 1.9 --- SList.h 10 Mar 2004 11:40:39 -0000 1.10 *************** *** 77,81 **** * Default constructor. */ ! SList(): _head(0), _tail(0), _count(0), _free_func(0) { } // --------- DESTRUCTORS ----------------------------------- --- 77,81 ---- * Default constructor. */ ! SList(): _count(0), _head(0), _tail(0), _free_func(0) { } // --------- DESTRUCTORS ----------------------------------- |