I am experimenting with overloading operator delete, so that I can return a plain pointer to those who don\'t wish to work with smart pointers, and yet be able to control wh
Once the destructor for an object has been called, anything you do with the object is undefined. What you are trying to do is not possible.