| 1227 | T *valptr() { return std::addressof(this->m_val); } |
| 1228 | const T *valptr() const { return std::addressof(this->m_val); } |
| 1229 | unexpected<E> *errptr() { return std::addressof(this->m_unexpect); } |
| 1230 | const unexpected<E> *errptr() const { return std::addressof(this->m_unexpect); } |
| 1231 | |
| 1232 | template <class U = T, |
nothing calls this directly
no outgoing calls
no test coverage detected