[Plib-cvs] CVS: plib/src/pui pu.h,1.98,1.99
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-03-24 19:17:17
|
Update of /cvsroot/plib/plib/src/pui In directory usw-pr-cvs1:/tmp/cvs-serv29614 Modified Files: pu.h Log Message: Replaced "delete" with "delete []" in puValue::~puValue Index: pu.h =================================================================== RCS file: /cvsroot/plib/plib/src/pui/pu.h,v retrieving revision 1.98 retrieving revision 1.99 diff -u -d -r1.98 -r1.99 --- pu.h 23 Mar 2002 15:06:44 -0000 1.98 +++ pu.h 24 Mar 2002 19:17:13 -0000 1.99 @@ -443,7 +443,7 @@ clrValue () ; } - virtual ~puValue () { delete string ; } + virtual ~puValue () { delete [] string ; } int getType ( void ) const { return type ; } const char *getTypeString ( void ) const ; |