Go to the documentation of this file.
39 #ifndef BLOCXX_MEMTRACER_HPP_INCLUDE_GUARD_
40 #define BLOCXX_MEMTRACER_HPP_INCLUDE_GUARD_
42 #ifdef BLOCXX_DEBUG_MEMORY
46 void*
operator new(std::size_t size)
throw (std::bad_alloc);
47 void*
operator new[](std::size_t size)
throw (std::bad_alloc);
48 void*
operator new(std::size_t size,
char const* file,
int line)
throw (std::bad_alloc);
49 void*
operator new[](std::size_t size,
char const* file,
int line)
throw (std::bad_alloc);
50 void operator delete(
void* p);
51 void operator delete[](
void* p);
52 #ifndef BLOCXX_MEMTRACER_CPP_INCLUDE_GUARD_
57 #endif // BLOCXX_DEBUG_MEMORY