This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: verbose terminate handler
- From: Joerg Richter <j_richter at gmx dot de>
- To: libstdc++ at gcc dot gnu dot org
- Cc: gdr at integrable-solutions dot net,jason at redhat dot com
- Date: Thu, 27 May 2004 21:26:46 +0200
- Subject: Re: verbose terminate handler
I had today a crash with output like this:
pure virtual function called
terminate called after throwing a `...'
what(): ...
It took me a little bit to discover that there wasn't actually any uncaught exception but a pure virtual call deep inside a catch. A little bit confusing if you don't know that this 'terminate called ...'-thing doesn't alway indicate an uncaught exception.
Joerg