Hi Everyone,
I have a program built on VS 2005 which compiles fine, and when I execute the same, it runs as expected. But i see memory leaks being detected by tools like (Visual Leak Detector, Glow Code etc..), Below is the block of code for your reference.
void Argument(const T &arg)
{
std::stringstream ss;
ss >> arg;
m_argument.push_back(ss.str());
}
can anyone help me in fixing this memory leaks
Thanks
Sam