[Plib-cvs] CVS: plib/src/ssgAux ssgaParticleSystem.cxx,1.2,1.3
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-03-23 15:06:49
|
Update of /cvsroot/plib/plib/src/ssgAux In directory usw-pr-cvs1:/tmp/cvs-serv29048/src/ssgAux Modified Files: ssgaParticleSystem.cxx Log Message: Replaced some instances of "delete" with "delete []" Index: ssgaParticleSystem.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/ssgAux/ssgaParticleSystem.cxx,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ssgaParticleSystem.cxx 19 Jan 2002 20:37:21 -0000 1.2 +++ ssgaParticleSystem.cxx 23 Mar 2002 15:06:45 -0000 1.3 @@ -108,7 +108,7 @@ if ( particle [ i ] . time_to_live >= 0.0 ) (*particle_delete) ( this, i, & particle [ i ] ) ; - delete particle ; + delete [] particle ; } |