Sorry I don't have a copy of the standard on me.
I would definitely like a definitive answer to this, so somebody with copy of the standard want to share chapter and verse on whats happening:
From my understanding terminate is only called iff:
- The exception handling mechanism cannot find a handler for a thrown exception.
The following are more specific cases of this:- During stack unwinding, an exception escapes a destructor.
- An thrown expression, an exception escapes the constructor.
- An exception escapes the constructor/destructor of a non local static (ie global)
- An exception escapes a function registered with atexit().
- An exception escapes main()
- Trying to re-throw an exception when no exception is currently propagating.
- An unexpected exception escapes a function with exception specifiers (via unexpected)
