MCPcopy Create free account
hub / github.com/JDAI-CV/DNNLibrary / errptr

Method errptr

include/common/expected.hpp:1229–1229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected