fix a missing [] in the delete call

This commit is contained in:
Lee Thomason 2012-05-18 13:47:48 -07:00
parent b3fcf26e0e
commit a2ae54e40d
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ public:
~DynArray() ~DynArray()
{ {
if ( mem != pool ) { if ( mem != pool ) {
delete mem; delete [] mem;
} }
} }
void Push( T t ) void Push( T t )