| 160 | namespace boost |
| 161 | { |
| 162 | [[noreturn]] void throw_exception( std::exception const & e ) |
| 163 | { |
| 164 | std::cerr << "Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what(); |
| 165 | std::terminate(); |
| 166 | } |
| 167 | |
| 168 | struct source_location; |
| 169 | [[noreturn]] void throw_exception( std::exception const & e, boost::source_location const & ) |