| 2436 | std::is_move_constructible<E>::value && |
| 2437 | detail::is_swappable<E>::value> * = nullptr> |
| 2438 | void swap(expected<T, E> &lhs, |
| 2439 | expected<T, E> &rhs) noexcept(noexcept(lhs.swap(rhs))) { |
| 2440 | lhs.swap(rhs); |
| 2441 | } |
| 2442 | } // namespace tl |
| 2443 | |
| 2444 | #endif |
no outgoing calls
no test coverage detected