From af4dc3cfd9ddc1bcb11d0913958677dda466783b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 18 May 2017 15:17:05 +0200 Subject: [PATCH] [libaxx] Inline placement new Change-Id: I561c5221d8284bf4fbe5846ee346baa874829904 --- libaxx/include/new | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libaxx/include/new b/libaxx/include/new index 091179a02..d3ae2686b 100644 --- a/libaxx/include/new +++ b/libaxx/include/new @@ -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; }