diff options
author | 2015-05-16 17:12:38 -0400 | |
---|---|---|
committer | 2015-05-16 17:13:01 -0400 | |
commit | 3c5998b7eec001f3c9a01022580d50a5a0bd1db5 (patch) | |
tree | e843116a1bab1046f78b6b80a6014132acee105e /src/lib/util/corealloc.h | |
parent | d1b57314bfddeab83f4686d31d0dc55c08e86d09 (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.h | 10 |
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); |