| 1531 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 1532 | template <class F> |
| 1533 | TL_EXPECTED_11_CONSTEXPR auto transform_error(F &&f) & { |
| 1534 | return map_error_impl(*this, std::forward<F>(f)); |
| 1535 | } |
| 1536 | template <class F> |
| 1537 | TL_EXPECTED_11_CONSTEXPR auto transform_error(F &&f) && { |
| 1538 | return map_error_impl(std::move(*this), std::forward<F>(f)); |
nothing calls this directly
no test coverage detected