| 113 | } |
| 114 | |
| 115 | inline |
| 116 | BOOST_SYSTEM_CONSTEXPR |
| 117 | system::error_condition |
| 118 | make_error_condition(condition c) noexcept |
| 119 | { |
| 120 | return system::error_condition( |
| 121 | static_cast<std::underlying_type<condition>::type>(c), |
| 122 | detail::error_condition_category ); |
| 123 | } |
| 124 | |
| 125 | } // namespace json |
| 126 | } // namespace boost |
nothing calls this directly
no test coverage detected