| 708 | } |
| 709 | |
| 710 | template <class... Args> void construct_error(Args &&...args) noexcept { |
| 711 | new (std::addressof(this->m_unexpect)) |
| 712 | unexpected<E>(std::forward<Args>(args)...); |
| 713 | this->m_has_val = false; |
| 714 | } |
| 715 | |
| 716 | #ifdef TL_EXPECTED_EXCEPTIONS_ENABLED |
| 717 |
no outgoing calls
no test coverage detected