summaryrefslogtreecommitdiffhomepage
path: root/FoundationEx/MemDebug.h
diff options
context:
space:
mode:
authorYasha Jannoo <alledodo@gmail.com>2019-09-10 01:05:02 +0100
committerYasha Jannoo <alledodo@gmail.com>2019-09-10 01:05:02 +0100
commitf935fb0960b1563d6404d2fec21963b20f498a3b (patch)
tree6c5b697f28e8290e8f2df55d182bf1bb5ef0223d /FoundationEx/MemDebug.h
parentf1963499ab3f0baef477757a22fabd9875feb75d (diff)
downloadstarshatter-f935fb0960b1563d6404d2fec21963b20f498a3b.zip
starshatter-f935fb0960b1563d6404d2fec21963b20f498a3b.tar.gz
starshatter-f935fb0960b1563d6404d2fec21963b20f498a3b.tar.bz2
Turn off Minimal Rebuild across the board
This is the \Gm compiler flag. There are warnings that this is deprecated, and the general advice is that setting the multiprocessor build flag should be used instead.
Diffstat (limited to 'FoundationEx/MemDebug.h')
-rw-r--r--FoundationEx/MemDebug.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/FoundationEx/MemDebug.h b/FoundationEx/MemDebug.h
index 14bc0cf..39e8dca 100644
--- a/FoundationEx/MemDebug.h
+++ b/FoundationEx/MemDebug.h
@@ -51,8 +51,8 @@
#ifndef _DEBUG
-inline void* __cdecl operator new(unsigned int s, const char*, int) { return ::operator new(s); }
-inline void __cdecl operator delete(void* p, const char*, int) { ::operator delete(p); }
+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); }
#else
@@ -89,21 +89,20 @@ public:
#ifndef _DEBUG
-inline void* __cdecl operator new(unsigned int s, const char*, int) { return ::operator new(s); }
-inline void __cdecl operator delete(void* p, const char*, int) { ::operator delete(p); }
+
+
+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); }
#else
/*_CRTIMP*/
void* __cdecl operator new(unsigned int, int, const char*, int);
-inline void* __cdecl operator new(unsigned int s, const char* f, int l)
- { return ::operator new(s, 1, f, l); }
+void* __cdecl operator new(unsigned int s, const char* f, int l);
-inline void* __cdecl operator new(unsigned int s)
- { return ::operator new(s, 1, __FILE__, __LINE__); }
+void* __cdecl operator new(unsigned int s);
-inline void __cdecl operator delete(void* p, const char*, int)
- { ::operator delete(p); }
+void __cdecl operator delete(void* p, const char*, int);
#endif _DEBUG