mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
11 lines
147 B
Plaintext
11 lines
147 B
Plaintext
#ifndef LIBAXX_NEW
|
|
#define LIBAXX_NEW
|
|
|
|
#include <stddef.h>
|
|
|
|
inline void * operator new(size_t size, void * ptr) noexcept {
|
|
return ptr;
|
|
}
|
|
|
|
#endif
|