| 703 | } |
| 704 | |
| 705 | template <class Rhs> void construct_with(Rhs &&rhs) noexcept { |
| 706 | new (std::addressof(this->m_val)) T(std::forward<Rhs>(rhs).get()); |
| 707 | this->m_has_val = true; |
| 708 | } |
| 709 | |
| 710 | template <class... Args> void construct_error(Args &&...args) noexcept { |
| 711 | new (std::addressof(this->m_unexpect)) |
no test coverage detected