| 355 | const error_category & category() const BOOST_SYSTEM_NOEXCEPT { return *m_cat; } |
| 356 | error_condition default_error_condition() const BOOST_SYSTEM_NOEXCEPT { return m_cat->default_error_condition(value()); } |
| 357 | std::string message() const { return m_cat->message(value()); } |
| 358 | |
| 359 | typedef void (*unspecified_bool_type)(); |
| 360 | static void unspecified_bool_true() {} |