From 309d3544ca7ab144fa5c60f1cf83b38f17d070b7 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 2 Oct 2021 00:32:11 +0200 Subject: Streamlined file and guard endings in Foundation and NetEx --- FoundationEx/MemDebug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'FoundationEx/MemDebug.cpp') diff --git a/FoundationEx/MemDebug.cpp b/FoundationEx/MemDebug.cpp index 4f3174f..2a02a2e 100644 --- a/FoundationEx/MemDebug.cpp +++ b/FoundationEx/MemDebug.cpp @@ -119,9 +119,9 @@ void __cdecl operator delete(void* p, const char*, int) ::operator delete(p); } -#endif _DEBUG +#endif // _DEBUG -#endif FOUNDATION_USE_MFC +#endif // FOUNDATION_USE_MFC static void heapdump() { -- cgit v1.1 From 5f5aa47b4260d4e688acdd85558baedfc99da752 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 2 Oct 2021 13:41:10 +0200 Subject: Added missing new[] debug overload --- FoundationEx/MemDebug.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'FoundationEx/MemDebug.cpp') diff --git a/FoundationEx/MemDebug.cpp b/FoundationEx/MemDebug.cpp index 2a02a2e..060df5a 100644 --- a/FoundationEx/MemDebug.cpp +++ b/FoundationEx/MemDebug.cpp @@ -89,11 +89,21 @@ void __cdecl operator delete(void* p, const char*, int) #ifndef _DEBUG +void* __cdecl operator new[](unsigned int s, const char*, int) +{ + return ::operator new[](s); +} + void* __cdecl operator new(unsigned int s, const char*, int) { return ::operator new(s); } +void __cdecl operator delete[](void* p, const char*, int) +{ + ::operator delete[](p); +} + void __cdecl operator delete(void* p, const char*, int) { ::operator delete(p); @@ -104,6 +114,11 @@ void __cdecl operator delete(void* p, const char*, int) // No definitions for the following: //void* __cdecl operator new(unsigned int, int, const char*, int) {} +void* __cdecl operator new[](unsigned int s, const char*, int) +{ + return ::operator new[](s); +} + void* __cdecl operator new(unsigned int s, const char* f, int l) { return ::operator new(s, 1, f, l); @@ -114,6 +129,11 @@ void* __cdecl operator new(unsigned int s) return ::operator new(s, 1, __FILE__, __LINE__); } +void __cdecl operator delete[](void* p, const char*, int) +{ + ::operator delete[](p); +} + void __cdecl operator delete(void* p, const char*, int) { ::operator delete(p); -- cgit v1.1