mirror of
https://github.com/loot/yaml-cpp.git
synced 2026-07-27 14:13:42 -07:00
10 lines
151 B
C
10 lines
151 B
C
#pragma once
|
|
|
|
// for detecting memory leaks
|
|
#ifdef _DEBUG
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
|
|
#endif // _DEBUG
|