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
46void*
operator new(std::size_t size)
throw (std::bad_alloc);
47void*
operator new[](std::size_t size)
throw (std::bad_alloc);
48void*
operator new(std::size_t size,
char const* file,
int line)
throw (std::bad_alloc);
49void*
operator new[](std::size_t size,
char const* file,
int line)
throw (std::bad_alloc);
50void operator delete(
void* p);
51void operator delete[](
void* p);
52#ifndef BLOCXX_MEMTRACER_CPP_INCLUDE_GUARD_