Skip to content

Instantly share code, notes, and snippets.

@qpfiffer
qpfiffer / test.cpp
Created October 13, 2011 15:04
C++ Memory Leak Detection in VS2010
#ifdef _DEBUG
#include <ostream>
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
#define new DEBUG_NEW
#endif
// ...