| 75 | } |
| 76 | |
| 77 | std::error_code inconvertibleErrorCode() { |
| 78 | return std::error_code(static_cast<int>(ErrorErrorCode::InconvertibleError), |
| 79 | *ErrorErrorCat); |
| 80 | } |
| 81 | |
| 82 | std::error_code FileError::convertToErrorCode() const { |
| 83 | return std::error_code(static_cast<int>(ErrorErrorCode::FileError), |
no test coverage detected