2016-02-10 15:22:28 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Utility file for using the MS CRT's memory tracking.
|
|
|
|
// crtdbg.h overloads malloc with malloc_dbg etc, but does not catch new. So here we go.
|
|
|
|
|
|
|
|
#include <crtdbg.h>
|
|
|
|
|
2017-02-15 11:58:21 +01:00
|
|
|
#if defined(_DEBUG)
|
2016-02-10 15:22:28 +01:00
|
|
|
#define USE_CRT_DBG
|
|
|
|
#ifndef DBG_NEW
|
|
|
|
#define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
|
|
|
|
#define new DBG_NEW
|
|
|
|
#endif
|
|
|
|
|
2019-05-19 15:23:25 +02:00
|
|
|
#endif // _DEBUG
|