Files
Upsilon/libaxx/include/new
Romain Goyet 64b31a2974 [libaxx] Support placement new
Change-Id: Ie2e2157cb27e7061c3225dbc01654465ae43e19f
2017-05-18 14:14:33 +02:00

9 lines
125 B
Plaintext

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