The code is
Vect::~Vect()
/*
PRE: None
POST: free pVect
*/
{
cout << "(__|| - DELETE (unlock the memory for): " << (*this) << endl;
// Put code below ....
}
Basically, I need it to correctly free pVect so that my other fuctions can work.
Also there is a .h file with this double* pVect;