crt.h 151 Bytes
Newer Older
1
2
#pragma once

3
// for detecting memory leaks
4
5
6
7
8
9
10
#ifdef _DEBUG

#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>

#endif // _DEBUG