| 3130 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 3131 | template <class F> |
| 3132 | TL_EXPECTED_11_CONSTEXPR auto transform_error(F &&f) & { |
| 3133 | return map_error_impl(*this, std::forward<F>(f)); |
| 3134 | } |
| 3135 | template <class F> |
| 3136 | TL_EXPECTED_11_CONSTEXPR auto transform_error(F &&f) && { |
| 3137 | return map_error_impl(std::move(*this), std::forward<F>(f)); |
nothing calls this directly
no test coverage detected