Ticket #8353: boost_throw_exception.diff

File boost_throw_exception.diff, 601 bytes (added by brad@…, 10 years ago)
  • boost/throw_exception.hpp

     
    6060
    6161inline void throw_exception_assert_compatibility( std::exception const & ) { }
    6262
    63 template<class E> BOOST_ATTRIBUTE_NORETURN inline void throw_exception( E const & e )
     63template<class E> inline BOOST_ATTRIBUTE_NORETURN void throw_exception( E const & e )
    6464{
    6565    //All boost exceptions are required to derive from std::exception,
    6666    //to ensure compatibility with BOOST_NO_EXCEPTIONS.