1 2 3 4 5 6 7 8 9 10
#ifndef LIBAXX_NEW #define LIBAXX_NEW #include <stddef.h> inline void * operator new(size_t size, void * ptr) noexcept { return ptr; } #endif