diff options
-rw-r--r-- | core/include/fxcrt/fx_memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fxcrt/fx_memory.h b/core/include/fxcrt/fx_memory.h index 7884d6b11d..4d56736011 100644 --- a/core/include/fxcrt/fx_memory.h +++ b/core/include/fxcrt/fx_memory.h @@ -24,7 +24,7 @@ void FXMEM_DefaultFree(void* pointer, int flags); #ifdef __cplusplus } -#define FX_NEW new(std::nothrow) +#define FX_NEW new #define FX_NEW_VECTOR(Pointer, Class, Count) (Pointer = FX_NEW Class[Count]) #define FX_DELETE_VECTOR(Pointer, Class, Count) delete[] Pointer |