| 102 | } // namespace detail |
| 103 | |
| 104 | inline |
| 105 | BOOST_SYSTEM_CONSTEXPR |
| 106 | system::error_code |
| 107 | make_error_code(error e) noexcept |
| 108 | { |
| 109 | |
| 110 | return system::error_code( |
| 111 | static_cast<std::underlying_type<error>::type>(e), |
| 112 | detail::error_code_category ); |
| 113 | } |
| 114 | |
| 115 | inline |
| 116 | BOOST_SYSTEM_CONSTEXPR |