| 3083 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 3084 | template <class F> |
| 3085 | TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) & { |
| 3086 | return map_error_impl(*this, std::forward<F>(f)); |
| 3087 | } |
| 3088 | template <class F> |
| 3089 | TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) && { |
| 3090 | return map_error_impl(std::move(*this), std::forward<F>(f)); |
nothing calls this directly
no test coverage detected