[ox/std] Fix placement new declaration to use stdlib declaration if available

This commit is contained in:
Gary Talent 2019-06-16 01:04:57 -05:00
parent 14a40bdcd6
commit 98d045827e

View File

@ -22,7 +22,11 @@
#endif #endif
#if __has_include(<new>)
#include <new>
#else
void *operator new(std::size_t, void*) noexcept; void *operator new(std::size_t, void*) noexcept;
#endif
/** /**