Monday, May 27, 2013

Debugging Visual Studio Memory Leaks in C++ and Cocos2d-x

Visual Leak Detector is a life-saver, download for free:

https://vld.codeplex.com/documentation

Quick check possible with this code snippet


#if defined(DEBUG) | defined(_DEBUG)
  _CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
#endif

No comments: