Files
Upsilon/libaxx/include/new
Romain Goyet c0040d9aae [libaxx] Add operator new[] and delete[]
Change-Id: Id20e803461a6e8c2b3484d094a5483763c06ed0d
2017-08-02 09:56:19 +02:00

11 lines
147 B
Plaintext

#ifndef LIBAXX_NEW
#define LIBAXX_NEW
#include <stddef.h>
inline void * operator new(size_t size, void * ptr) noexcept {
return ptr;
}
#endif