mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
9 lines
132 B
Plaintext
9 lines
132 B
Plaintext
#ifndef LIBAXX_NEW
|
|
#define LIBAXX_NEW
|
|
|
|
inline void * operator new(unsigned int size, void * ptr) noexcept {
|
|
return ptr;
|
|
}
|
|
|
|
#endif
|