/*
* trimvertexpool.c++
*
- * $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $
- * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/trimvertpool.cc,v 1.1 2001/03/17 00:25:41 brianp Exp $
+ * $Date: 2003/05/08 15:47:00 $ $Revision: 1.2 $
+ * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/trimvertpool.cc,v 1.2 2003/05/08 15:47:00 brianp Exp $
*/
#include "glimports.h"
{
// free all arrays of TrimVertices vertices
while( nextvlistslot ) {
- delete vlist[--nextvlistslot];
+ delete [] vlist[--nextvlistslot];
}
// reallocate space for array of pointers to vertex lists
// free all arrays of TrimVertices vertices
while( nextvlistslot ) {
- delete vlist[--nextvlistslot];
+ delete [] vlist[--nextvlistslot];
vlist[nextvlistslot] = 0;
}