| 54 | #include <boost/stacktrace.hpp> |
| 55 | |
| 56 | void my_terminate_handler() { |
| 57 | try { |
| 58 | std::cerr << boost::stacktrace::stacktrace(); |
| 59 | } catch (...) {} |
| 60 | std::abort(); |
| 61 | } |
| 62 | //] |
| 63 | |
| 64 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected