Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

Prev Up HomeNext

void outcome_throw_as_system_error_with_payload(BoostErrorCodeEnum &&)

A specialisation of outcome_throw_as_system_error_with_payload() for types where boost::system::is_error_code_enum<BoostErrorCodeEnum> or boost::system::is_error_condition_enum<BoostErrorCodeEnum> is true. This executes BOOST_OUTCOME_THROW_EXCEPTION(expr) with a boost::system::system_error constructed from the result of the ADL discovered free function make_error_code(BoostErrorCodeEnum).

Overridable: Argument dependent lookup.

Requires: Either boost::system::is_error_code_enum<T> or boost::system::is_error_condition_enum<T> to be true for a decayed BoostErrorCodeEnum.

Namespace: boost::system

Header: <boost/outcome/boost_result.hpp>

Last revised: August 13, 2019 at 13:55:04 -0400


Prev Up HomeNext