FS2_Open
Open source remastering of the Freespace 2 engine
|
#include <new>
Go to the source code of this file.
Functions | |
void * | operator new (size_t size) throw (std::bad_alloc) |
void | operator delete (void *p) throw () |
void * | operator new[] (size_t size) throw (std::bad_alloc) |
void | operator delete[] (void *p) throw () |
void * | operator new (size_t size, const std::nothrow_t &) throw () |
void | operator delete (void *p, const std::nothrow_t &) throw () |
void * | operator new[] (size_t size, const std::nothrow_t &) throw () |
void | operator delete[] (void *p, const std::nothrow_t &) throw () |
Definition at line 21 of file fsmemory.cpp.
Definition at line 52 of file fsmemory.cpp.
Definition at line 41 of file fsmemory.cpp.
Definition at line 62 of file fsmemory.cpp.
void* operator new | ( | size_t | size | ) | |
throw | ( | std::bad_alloc | |||
) |
Definition at line 9 of file fsmemory.cpp.
void* operator new | ( | size_t | size, |
const std::nothrow_t & | |||
) | |||
throw | ( | ||
) |
Definition at line 47 of file fsmemory.cpp.
void* operator new[] | ( | size_t | size | ) | |
throw | ( | std::bad_alloc | |||
) |
Definition at line 29 of file fsmemory.cpp.
void* operator new[] | ( | size_t | size, |
const std::nothrow_t & | |||
) | |||
throw | ( | ||
) |
Definition at line 57 of file fsmemory.cpp.