| 92 | struct ErrorCodeError : ErrorInfoBase { |
| 93 | std::error_code ec; |
| 94 | ErrorCodeError(std::error_code ec) : ec(ec) {} |
| 95 | std::string message(std::string_view) const noexcept override { return ec.message(); } |
| 96 | }; |
| 97 | [[nodiscard]] inline Unexpected forwardError(::ll::Error& err) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected