diff options
Diffstat (limited to 'llvm/tools/llvm-pdbdump/CodeViewYaml.h')
-rw-r--r-- | llvm/tools/llvm-pdbdump/CodeViewYaml.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/llvm-pdbdump/CodeViewYaml.h b/llvm/tools/llvm-pdbdump/CodeViewYaml.h index bacb55cef40..8932d008ca3 100644 --- a/llvm/tools/llvm-pdbdump/CodeViewYaml.h +++ b/llvm/tools/llvm-pdbdump/CodeViewYaml.h @@ -21,7 +21,8 @@ class YamlTypeDumperCallbacks : public TypeVisitorCallbacks { public: YamlTypeDumperCallbacks(llvm::yaml::IO &IO) : YamlIO(IO) {} - virtual Error visitTypeBegin(const CVRecord<TypeLeafKind> &Record) override; + virtual Expected<TypeLeafKind> + visitTypeBegin(const CVRecord<TypeLeafKind> &Record) override; #define TYPE_RECORD(EnumName, EnumVal, Name) \ Error visitKnownRecord(const CVRecord<TypeLeafKind> &CVR, \ |