I have a C++ application compiled in debug (using MinGW and Qt) but I've lost some major changes because someone in my team forgot to commit his changes in the source control manager and overwrote the source code with other changes.
When I run the program in debug (in Qt Creator) I can set a break point in main and then see the source code.
Is there a way to reconstruct all the source file lost using only the debug binaries? Either manually or automatically.
Thanks!