| 1424 | #if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && \ |
| 1425 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 1426 | template <class F> TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) & { |
| 1427 | return map_error_impl(*this, std::forward<F>(f)); |
| 1428 | } |
| 1429 | template <class F> TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) && { |
| 1430 | return map_error_impl(std::move(*this), std::forward<F>(f)); |
| 1431 | } |
nothing calls this directly
no test coverage detected