mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
12 lines
153 B
C
12 lines
153 B
C
#pragma once
|
|
|
|
// for detecting memory leaks
|
|
#ifdef _DEBUG
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
|
|
#endif // _DEBUG
|
|
|