| 1386 | #if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && \ |
| 1387 | !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55) |
| 1388 | template <class F> TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) & { |
| 1389 | return map_error_impl(*this, std::forward<F>(f)); |
| 1390 | } |
| 1391 | template <class F> TL_EXPECTED_11_CONSTEXPR auto map_error(F &&f) && { |
| 1392 | return map_error_impl(std::move(*this), std::forward<F>(f)); |
| 1393 | } |
nothing calls this directly
no test coverage detected