I'm having a problem deleting data of a vector.
When I create the data, I first reserve space in an array, and then resize the vector and copy the addresses of the array:
//Create the vertices
verts.reserve(vn); verts.resize(vn);
TriVertex *vertsaux = new TriVertex[vn];
for(int i=0, c=0; i<vn; i++, c+=3)
{
vertsaux[i].SetId(i);
vertsaux[i].SetCoords0(Vector3(vs[c], vs[c+1], vs[c+2]));
//Inicializate texture vertices
vertsaux[i].SetTextureCoords(Vector2(0.0f, 0.0f));
}
for(int i=0; i<vn; i++)
{
verts[i] = &vertsaux[i];
}
But in the destructor of my class, it gives me a runtime error when I do this:
for (i=0; i < this->verts.size(); i++) {
delete this->verts[i];
}
Anybody know why can this be happening? Thanks!
PS: By the way, I can't just create new TriVertex inside the for, because of some implementation details...
verts.reserve(vn); verts.resize(vn);is redundant. All vector operations that grow the vector will do the reserve for you. You use.reserve(N)only when you'd grow the vector incrementally, know a minimum final size, and don't want the intermediate reservations. – MSalters May 17 '11 at 7:42