mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
libaxx: remove a warning
Change-Id: I0d59ee19258e63d92adc870bb068f733adf39376
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
// See the C++ standard, section 3.7.4 for those definitions
|
||||
|
||||
void * operator new (unsigned int size) {
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void operator delete (void * ptr) {
|
||||
void operator delete (void * ptr) noexcept {
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user