I work with a large solution in Visual C++ that uses MFC. Everything worked well before changes. When I just modified a dialog and added a new one. Program began to raise exception at close at the first line of:
if (!wglDeleteContext(m_hRc))
{
throw;
}
m_hRc = NULL;
return;
in file RenderDevice.cpp.
I'm using TortoiseSVN and thus I reverted all the changes and recompiled the projects in solution. But the problem remained.
Can anyone tell me what could be wrong?