| 218 | namespace boost |
| 219 | { |
| 220 | BOOST_NORETURN void throw_exception( std::exception const & e ) |
| 221 | { |
| 222 | std::cerr << "Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what(); |
| 223 | std::terminate(); |
| 224 | } |
| 225 | |
| 226 | struct source_location; |
| 227 | BOOST_NORETURN void throw_exception( std::exception const & e, boost::source_location const & ) |