12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef BOOST_OUTCOME_OUTCOME_HPP
- #define BOOST_OUTCOME_OUTCOME_HPP
- #include "result.hpp"
- #include "boost_outcome.hpp"
- BOOST_OUTCOME_V2_NAMESPACE_EXPORT_BEGIN
- template <class R, class S = boost::system::error_code, class P = boost::exception_ptr, class NoValuePolicy = policy::default_policy<R, S, P>>
- using outcome = boost_outcome<R, S, P, NoValuePolicy>;
- BOOST_OUTCOME_V2_NAMESPACE_END
- #endif
|