Remove inline from throw_exception

This commit is contained in:
Peter Dimov
2019-11-26 19:10:57 +02:00
parent f477e33259
commit ea9bd58f8c
2 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ BOOST_NORETURN void throw_exception( std::exception const & e,
#else
template<class E> BOOST_NORETURN inline void throw_exception( E const & e );
template<class E> BOOST_NORETURN void throw_exception( E const & e );
template<class E> BOOST_NORETURN void throw_exception( E const & e,
boost::source_location const & loc );
@ -52,7 +52,7 @@ BOOST_NORETURN void throw_exception( std::exception const & e ); // user defined
#else
template<class E> BOOST_NORETURN inline void throw_exception( E const & e );
template<class E> BOOST_NORETURN void throw_exception( E const & e );
#endif
```