| 110 | namespace boost |
| 111 | { |
| 112 | [[noreturn]] void throw_exception( std::exception const & e ) |
| 113 | { |
| 114 | std::cerr << "Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what(); |
| 115 | std::terminate(); |
| 116 | } |
| 117 | |
| 118 | struct source_location; |
| 119 | [[noreturn]] void throw_exception( std::exception const & e, boost::source_location const & ) |