Hi,
I have written an xll (an excel dll) and it leaks like hell. Because of how it's built I have a hard time debuggin it. Could this be leaking?
Thanks.Code:double test() { int dynamicSize = 5; std::vector<double> v(dynamicSize); double* r = NULL; r = new double[dynamicSize]; delete [] r; v.clear(); }




Reply With Quote