C++ 常用代码段整理
2021-03-04 19:27
标签:code port visual amp set 整理 crt leak nbsp 1、检查内存泄漏: 头文件 source文件 C++ 常用代码段整理 标签:code port visual amp set 整理 crt leak nbsp 原文地址:https://www.cnblogs.com/taofengfeng/p/14343998.html// MS Visual C++ memory leak debug tracing
#if defined(_MSC_VER) && defined(_DEBUG)
# define _CRTDBG_MAP_ALLOC
# include
// MS Visual C++ memory leak debug tracing
#if defined(_MSC_VER) && defined(_DEBUG)
_CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
#endif