Home | History | Annotate | Download | only in Raw

Lines Matching defs:RawError

1 #include "llvm/DebugInfo/PDB/Raw/RawError.h"
45 char RawError::ID = 0;
47 RawError::RawError(raw_error_code C) : RawError(C, "") {}
49 RawError::RawError(const std::string &Context)
50 : RawError(raw_error_code::unspecified, Context) {}
52 RawError::RawError(raw_error_code C, const std::string &Context) : Code(C) {
61 void RawError::log(raw_ostream &OS) const { OS << ErrMsg << "\n"; }
63 const std::string &RawError::getErrorMessage() const { return ErrMsg; }
65 std::error_code RawError::convertToErrorCode() const {