| 598 | BOOST_MOVE_DOC1ST(unique_ptr&, typename bmupd::enable_up_moveconv_assign |
| 599 | <T BOOST_MOVE_I D BOOST_MOVE_I U BOOST_MOVE_I E BOOST_MOVE_I unique_ptr &>::type) |
| 600 | operator=(BOOST_RV_REF_BEG unique_ptr<U, E> BOOST_RV_REF_END u) BOOST_NOEXCEPT |
| 601 | { |
| 602 | this->reset(u.release()); |
| 603 | m_data.deleter() = ::boost::move_if_not_lvalue_reference<E>(u.get_deleter()); |
| 604 | return *this; |
| 605 | } |
| 606 | |
| 607 | //! <b>Effects</b>: <tt>reset()</tt>. |
| 608 | //! |
nothing calls this directly
no test coverage detected