Move operator new to its own file.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-09-26 19:40:00 +02:00
parent 60214a9dfb
commit d81cdc09e9
3 changed files with 32 additions and 6 deletions

View File

@ -75,6 +75,7 @@ heap.o \
integer.o \
mbtowc.o \
memory.o \
op-new.o \
readparamstring.o \
rewind.o \
sort.o \

View File

@ -728,9 +728,3 @@ namespace Maxsi
}
}
}
void* operator new(size_t Size) { return malloc(Size); }
void* operator new[](size_t Size) { return malloc(Size); }
void operator delete (void* Addr) { return free(Addr); };
void operator delete[](void* Addr) { return free(Addr); };

31
libmaxsi/op-new.cpp Normal file
View File

@ -0,0 +1,31 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
This file is part of LibMaxsi.
LibMaxsi is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
op-new.cpp
C++ allocation operators.
*******************************************************************************/
#include <stddef.h>
#include <stdlib.h>
void* operator new(size_t size) { return malloc(size); }
void* operator new[](size_t size) { return malloc(size); }
void operator delete (void* addr) { return free(addr); }
void operator delete[](void* addr) { return free(addr); }