| 221 | } |
| 222 | |
| 223 | bool operator==(const error_code& lhs, const error_code& rhs) noexcept |
| 224 | { |
| 225 | return lhs.category() == rhs.category() && lhs.value() == rhs.value(); |
| 226 | } |
| 227 | |
| 228 | bool operator==(const error_code& lhs, const error_condition& rhs) noexcept |
| 229 | { |
nothing calls this directly
no test coverage detected