| 133 | namespace boost |
| 134 | { |
| 135 | [[noreturn]] void throw_exception( std::exception const & e ) |
| 136 | { |
| 137 | std::cerr << "Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what(); |
| 138 | std::terminate(); |
| 139 | } |
| 140 | |
| 141 | struct source_location; |
| 142 | [[noreturn]] void throw_exception( std::exception const & e, boost::source_location const & ) |