From 2e43457e9c7f328012f744adb4ac7e96f503b6df Mon Sep 17 00:00:00 2001 From: Yasha Jannoo Date: Tue, 10 Sep 2019 01:08:21 +0100 Subject: Revert "Turn off Minimal Rebuild across the board" This reverts commit f935fb0960b1563d6404d2fec21963b20f498a3b. --- FoundationEx/MemDebug.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'FoundationEx/MemDebug.cpp') diff --git a/FoundationEx/MemDebug.cpp b/FoundationEx/MemDebug.cpp index 3e1c0f5..2694b33 100644 --- a/FoundationEx/MemDebug.cpp +++ b/FoundationEx/MemDebug.cpp @@ -61,21 +61,6 @@ static HANDLE mem_log_file = 0; #define CrtClrDebugField(a) _CrtSetDbgFlag(~(a) & _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG)) #endif -inline void* __cdecl operator new(unsigned int s, const char* f, int l) -{ - return ::operator new(s, 1, f, l); -} - -inline void* __cdecl operator new(unsigned int s) -{ - return ::operator new(s, 1, __FILE__, __LINE__); -} - -inline void __cdecl operator delete(void* p, const char*, int) -{ - ::operator delete(p); -} - static void heapdump() { _HEAPINFO hinfo; -- cgit v1.1