I'm getting a bit of a memory leak in my program and this is about the only thing I think it could be.
if (inputType == 'S')
{
SavingAccount* savingAccount = new SavingAccount();
inFile >> *savingAccount;
accounts.push_back(savingAccount);
}
While the vector of pointers is deleted at the end of the program, I am having 3 error leaks which seem to correspond with the 3 types of accounts I have. That being said, if I delete the pointer after putting it into the vector, it deletes the entry in the vector as well (which I expected)
Does anyone know how to resolve this?
EDIT:
void Transaction::cleanUp()
{
for (int i = 0; i < accounts.size(); i++)
{
delete accounts[i];
}
accounts.clear();
}
clean up code added.
EDIT: RESOLVED
My issue didn't have as much to do with the vector as it did the destructors of the classes. As I had not defined a virtual destructor only the base class was being erased, leaving behind fragments of the derived classes. There is no no memory leak after adding this.
this is about the only thing I think it could be- why do you think that this could be the only cause? Before looking at your vector more closely, consider other places usingnewandmalloc. – Frerich Raabe Sep 21 '12 at 8:16new, or that you didn't want deleted when the vector was destroyed. – Steve Jessop Sep 21 '12 at 8:38