14 lines
222 B
C
14 lines
222 B
C
|
#ifdef _DEBUG
|
||
|
#define _CRTDBG_MAP_ALLOC
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <crtdbg.h>
|
||
|
|
||
|
#ifndef DBG_NEW
|
||
|
#define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
|
||
|
#define new DBG_NEW
|
||
|
|
||
|
#endif
|
||
|
#endif
|
||
|
|