| 105 | |
| 106 | template <class T> |
| 107 | inline void swap ( optional<T>& x, optional<T>& y ) |
| 108 | //BOOST_NOEXCEPT_IF(::boost::is_nothrow_move_constructible<T>::value && BOOST_NOEXCEPT_EXPR(boost::swap(*x, *y))) |
| 109 | { |
| 110 | optional_detail::swap_selector<optional_swap_should_use_default_constructor<T>::value>::optional_swap(x, y); |
| 111 | } |
| 112 | |
| 113 | } // namespace boost |
| 114 |
no outgoing calls
no test coverage detected