I know that my destructors are called on normal unwind of stack and when exceptions are thrown, but not when exit() is called.
Are there any other cases where my des
Another case they won't be called is if you are using polymorphism and have not made your base destructors virtual.