Rename throw_exception_from_error_code to throw_exception_from_error

This commit is contained in:
Peter Dimov
2021-09-17 18:33:04 +03:00
parent f2b3ae7e2b
commit 3f67d3def5
3 changed files with 10 additions and 10 deletions

View File

@ -1383,9 +1383,9 @@ it requires {cpp}11.
namespace boost { namespace boost {
namespace system { namespace system {
// throw_exception_from_error_code // throw_exception_from_error
BOOST_NORETURN inline void throw_exception_from_error_code( error_code const & e ); BOOST_NORETURN inline void throw_exception_from_error( error_code const & e );
// in_place_* // in_place_*
@ -1413,10 +1413,10 @@ An implementation for the common and default case where `E` is `error_code` is
already provided. It throws `system_error(e)`. already provided. It throws `system_error(e)`.
If `result<T, E>` is used with other error types, the user is expected to provide If `result<T, E>` is used with other error types, the user is expected to provide
an appropriate overload of `throw_exception_from_error_code` in the namespace of `E`. an appropriate overload of `throw_exception_from_error` in the namespace of `E`.
``` ```
BOOST_NORETURN inline void throw_exception_from_error_code( error_code const & e ); BOOST_NORETURN inline void throw_exception_from_error( error_code const & e );
``` ```
[none] [none]
* {blank} * {blank}

View File

@ -24,9 +24,9 @@ namespace boost
namespace system namespace system
{ {
// throw_exception_from_error_code // throw_exception_from_error
BOOST_NORETURN inline void throw_exception_from_error_code( error_code const & e ) BOOST_NORETURN inline void throw_exception_from_error( error_code const & e )
{ {
boost::throw_exception( system_error( e ) ); boost::throw_exception( system_error( e ) );
} }
@ -180,7 +180,7 @@ public:
} }
else else
{ {
throw_exception_from_error_code( variant2::unsafe_get<1>( v_ ) ); throw_exception_from_error( variant2::unsafe_get<1>( v_ ) );
} }
} }
@ -194,7 +194,7 @@ public:
} }
else else
{ {
throw_exception_from_error_code( variant2::unsafe_get<1>( v_ ) ); throw_exception_from_error( variant2::unsafe_get<1>( v_ ) );
} }
} }
@ -206,7 +206,7 @@ public:
} }
else else
{ {
throw_exception_from_error_code( variant2::unsafe_get<1>( v_ ) ); throw_exception_from_error( variant2::unsafe_get<1>( v_ ) );
} }
} }

View File

@ -26,7 +26,7 @@ struct E
{ {
}; };
BOOST_NORETURN void throw_exception_from_error_code( Y const & ) BOOST_NORETURN void throw_exception_from_error( Y const & )
{ {
throw E(); throw E();
} }