1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Changes to fix building on Windows.

This commit is contained in:
mats@romeo.(none)
2007-02-24 17:33:58 +01:00
parent 279e2b8f6b
commit 0a2e305c02

View File

@@ -1479,14 +1479,10 @@ do { doubleget_union _tmp; \
#endif
/*
Define placement versions of operator new and operator delete since
we cannot be sure that the <new> include exists.
Include standard definitions of operator new and delete.
*/
#ifdef __cplusplus
inline void *operator new(size_t, void *ptr) { return ptr; }
inline void *operator new[](size_t, void *ptr) { return ptr; }
inline void operator delete(void*, void*) { /* Do nothing */ }
inline void operator delete[](void*, void*) { /* Do nothing */ }
#include <new>
#endif
#endif /* my_global_h */