summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/corealloc.h
diff options
context:
space:
mode:
author balr0g <balrog032@gmail.com>2015-05-16 17:12:38 -0400
committer balr0g <balrog032@gmail.com>2015-05-16 17:13:01 -0400
commit3c5998b7eec001f3c9a01022580d50a5a0bd1db5 (patch)
treee843116a1bab1046f78b6b80a6014132acee105e /src/lib/util/corealloc.h
parentd1b57314bfddeab83f4686d31d0dc55c08e86d09 (diff)
Mark replacements separate from overloads and remove unneeded prototypes (nw)
Diffstat (limited to 'src/lib/util/corealloc.h')
-rw-r--r--src/lib/util/corealloc.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lib/util/corealloc.h b/src/lib/util/corealloc.h
index f12bd8fedcb..eb97e643686 100644
--- a/src/lib/util/corealloc.h
+++ b/src/lib/util/corealloc.h
@@ -57,16 +57,6 @@ void dump_unfreed_mem(UINT64 start = 0);
// zeromem_t is a dummy class used to tell new to zero memory after allocation
class zeromem_t { };
-#ifndef NO_MEM_TRACKING
-
-// standard new/delete operators (try to avoid using)
-void *operator new(std::size_t size) throw (std::bad_alloc);
-void *operator new[](std::size_t size) throw (std::bad_alloc);
-void operator delete(void *ptr) throw();
-void operator delete[](void *ptr) throw();
-
-#endif
-
// file/line new/delete operators
void *operator new(std::size_t size, const char *file, int line) throw (std::bad_alloc);
void *operator new[](std::size_t size, const char *file, int line) throw (std::bad_alloc);