can I explicitly call a destructor if I've allocated my object with new?
1 Like
Probably not.
Unless you used placement new, you should simply delete the object rather than explicitly calling the destructor.