Hi Gerald, You need to call your custom operator delete. int main(int argc,char *argv[]) { A *a = new("Allocing class A") A(); operator delete(a, "Deallocating class A"); return 0; } HTH, --Eljay
Hi Gerald, You need to call your custom operator delete. int main(int argc,char *argv[]) { A *a = new("Allocing class A") A(); operator delete(a, "Deallocating class A"); return 0; } HTH, --Eljay