mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
29 lines
794 B
C++
29 lines
794 B
C++
|
/*H*************************************************************************************/
|
||
|
/*!
|
||
|
|
||
|
\File t2new.cpp
|
||
|
|
||
|
\Description
|
||
|
This implements code in support of memory allocation in C++ code
|
||
|
|
||
|
\Copyright
|
||
|
Copyright (c) Electronic Arts 2017. ALL RIGHTS RESERVED.
|
||
|
|
||
|
\Version 12/01/2017 (eesponda)
|
||
|
*/
|
||
|
/*************************************************************************************H*/
|
||
|
|
||
|
/*** Include files *********************************************************************/
|
||
|
|
||
|
#include <new>
|
||
|
|
||
|
void* operator new[](size_t size, unsigned long, unsigned long, char const*, int, unsigned int, char const*, int)
|
||
|
{
|
||
|
return operator new(size);
|
||
|
}
|
||
|
void* operator new[](size_t size, char const*, int, unsigned int, char const*, int)
|
||
|
{
|
||
|
return operator new(size);
|
||
|
}
|
||
|
|