1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-12 15:46:25 +01:00

Don't start logging window in debug builds under windows (we use the MSVC debugger window instead).

Added (commented out) memory leak detection to AudacityHeaders.h
This commit is contained in:
james.k.crook@gmail.com
2012-03-19 17:54:52 +00:00
parent db38d6049d
commit 4403da58ff
2 changed files with 26 additions and 5 deletions

View File

@@ -72,3 +72,18 @@
#include "widgets/ProgressDialog.h"
#include "widgets/Ruler.h"
//#ifdef __WXMSW__
// Enable this to diagnose memory leaks too!
// #include <wx/msw/msvcrt.h> // redefines the new() operator
//#endif
#if 0
#define _DEBUG
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
#define new DEBUG_NEW
#endif
#endif