| 104 | namespace boost |
| 105 | { |
| 106 | [[noreturn]] void throw_exception( std::exception const & e ) |
| 107 | { |
| 108 | std::cerr << "Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what(); |
| 109 | std::terminate(); |
| 110 | } |
| 111 | |
| 112 | struct source_location; |
| 113 | [[noreturn]] void throw_exception( std::exception const & e, boost::source_location const & ) |