mirror of https://github.com/AxioDL/tinyxml2.git
Merge pull request #218 from Dmitry-Me/enableLeakTracing
Enable dump of debug heap memory leaks
This commit is contained in:
commit
4de01a9489
|
@ -279,6 +279,8 @@ int main( int argc, const char ** argv )
|
|||
{
|
||||
#if defined( _MSC_VER ) && defined( DEBUG )
|
||||
_CrtMemCheckpoint( &startMemState );
|
||||
// Enable MS Visual C++ debug heap memory leaks dump on exit
|
||||
_CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER) || defined(MINGW32) || defined(__MINGW32__)
|
||||
|
|
Loading…
Reference in New Issue