File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1414#include < iostream>
1515namespace boost
1616{
17- [[noreturn]] void throw_exception ( std::exception const & e )
17+ [[noreturn]] inline void throw_exception ( std::exception const & e )
1818 {
1919 std::cerr << " Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what ();
2020 std::terminate ();
2121 }
2222
2323 struct source_location ;
24- [[noreturn]] void throw_exception ( std::exception const & e, boost::source_location const & )
24+ [[noreturn]] inline void throw_exception ( std::exception const & e, boost::source_location const & )
2525 {
2626 throw_exception (e);
2727 }
Original file line number Diff line number Diff line change 1414#include < iostream>
1515namespace boost
1616{
17- [[noreturn]] void throw_exception ( std::exception const & e )
17+ [[noreturn]] inline void throw_exception ( std::exception const & e )
1818 {
1919 std::cerr << " Terminating due to a C++ exception under BOOST_LEAF_NO_EXCEPTIONS: " << e.what ();
2020 std::terminate ();
2121 }
2222
2323 struct source_location ;
24- [[noreturn]] void throw_exception ( std::exception const & e, boost::source_location const & )
24+ [[noreturn]] inline void throw_exception ( std::exception const & e, boost::source_location const & )
2525 {
2626 throw_exception (e);
2727 }
You can’t perform that action at this time.
0 commit comments