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

(synced from 98d045827e)
This commit is contained in:
2019-06-16 01:04:57 -05:00
parent 6cd9b8008d
commit 4b0b34635a
+4
View File
@@ -22,7 +22,11 @@
#endif
#if __has_include(<new>)
#include <new>
#else
void *operator new(std::size_t, void*) noexcept;
#endif
/**