| 1039 | // No-throw |
| 1040 | #if (!defined BOOST_NO_CXX11_REF_QUALIFIERS) && (!defined BOOST_OPTIONAL_DETAIL_NO_RVALUE_REFERENCES) |
| 1041 | reference_const_type operator *() const& { return this->get() ; } |
| 1042 | reference_type operator *() & { return this->get() ; } |
| 1043 | reference_type_of_temporary_wrapper operator *() && { return base::types::move(this->get()) ; } |
| 1044 | #else |