Files
Upsilon/libaxx/include/new
Émilie Feral af4dc3cfd9 [libaxx] Inline placement new
Change-Id: I561c5221d8284bf4fbe5846ee346baa874829904
2017-05-18 15:17:05 +02:00

9 lines
132 B
Plaintext

#ifndef LIBAXX_NEW
#define LIBAXX_NEW
inline void * operator new(unsigned int size, void * ptr) noexcept {
return ptr;
}
#endif