[Plib-cvs] plib/src/ssg ssgSimpleList.cxx,1.13,1.14
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2004-01-25 16:51:01
|
Update of /cvsroot/plib/plib/src/ssg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1129 Modified Files: ssgSimpleList.cxx Log Message: Fixed bug: "ssgIndexArray::clone" was missing Index: ssgSimpleList.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/ssgSimpleList.cxx,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- ssgSimpleList.cxx 2 Sep 2002 06:05:48 -0000 1.13 +++ ssgSimpleList.cxx 25 Jan 2004 16:50:04 -0000 1.14 @@ -71,6 +71,13 @@ return b ; } +ssgBase *ssgIndexArray::clone ( int clone_flags ) +{ + ssgIndexArray *b = new ssgIndexArray () ; + b -> copy_from ( this, clone_flags ) ; + return b ; +} + |