Go to the documentation of this file. 3 void*
operator new(
size_t s,
const char* file,
int line);
4 void*
operator new[](
size_t s,
const char* file,
int line);
6 void operator delete(
void* p);
7 void operator delete[](
void* p);
9 #define new new(__FILE__, __LINE__) 10 #pragma warning(disable: 4291) // no matching operator delete found; memory will not be freed if initialization throws an exception