lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
|
Always allocates space for derived classes on the same specified heap. More...
#include <heap_bound.h>
Public Member Functions | |
LEAN_INLINE void * | operator new (size_t size) |
Allocates a block of memory of the given size. | |
LEAN_INLINE void | operator delete (void *memory) |
Frees the given block of memory. | |
LEAN_INLINE void * | operator new[] (size_t size) |
Allocates a block of memory of the given size. | |
LEAN_INLINE void | operator delete[] (void *memory) |
Frees the given block of memory. |
Always allocates space for derived classes on the same specified heap.