mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2026-07-24 20:25:32 -04:00
12 lines
144 B
C
12 lines
144 B
C
#pragma once
|
|
|
|
// for detecting memory leaks
|
|
#ifdef _DEBUG
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
|
|
#endif // _DEBUG
|
|
|