[libaxx] Inline placement new

Change-Id: I561c5221d8284bf4fbe5846ee346baa874829904
This commit is contained in:
Émilie Feral
2017-05-18 15:17:05 +02:00
parent 0105a0a450
commit af4dc3cfd9

View File

@@ -1,7 +1,7 @@
#ifndef LIBAXX_NEW
#define LIBAXX_NEW
void * operator new(unsigned int size, void * ptr) noexcept {
inline void * operator new(unsigned int size, void * ptr) noexcept {
return ptr;
}