We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22abfc4 commit 57556feCopy full SHA for 57556fe
src/runtime/hexagon/rpc/simulator/session.cc
@@ -62,6 +62,7 @@ struct Optional : public dmlc::optional<T> {
62
using dmlc::optional<T>::optional;
63
using dmlc::optional<T>::operator=;
64
Optional(const T& val) : dmlc::optional<T>(val) {} // NOLINT(*)
65
+ Optional() = default;
66
67
T* operator->() { return &this->operator*(); }
68
const T* operator->() const { return &this->operator*(); }
0 commit comments