| 405 | protected : |
| 406 | |
| 407 | void construct ( argument_type val ) |
| 408 | { |
| 409 | ::new (m_storage.address()) unqualified_value_type(val) ; |
| 410 | m_initialized = true ; |
| 411 | } |
| 412 | |
| 413 | #ifndef BOOST_OPTIONAL_DETAIL_NO_RVALUE_REFERENCES |
| 414 | void construct ( rval_reference_type val ) |
no test coverage detected