reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
121 void handleError(Error E) { Err.emplace(toString(std::move(E))); } 122 bool hasError() const { return Err.hasValue(); } 123 const char *getMessage() const { return Err ? Err->c_str() : nullptr; }; 123 const char *getMessage() const { return Err ? Err->c_str() : nullptr; };