HI All,
I was trying to overload new and delete to fix a memory leak problem in my project. But got stuck with some compilation error.
Currently this code is
the signature don't match it sould be void* operator new (size_t size).
void* operator new (size_t size)
overriding single object new signature is static void * operator new(site_t size),
static void * operator new(site_t size)
roni