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