Fix build. NFC.

This commit is contained in:
Michael Liao 2020-04-21 14:58:52 -04:00
parent 4927ae0858
commit a13dce1d90
2 changed files with 2 additions and 2 deletions

View File

@ -18,5 +18,5 @@
type = Library
name = DebugInfoPDB
parent = DebugInfo
required_libraries = Object Support DebugInfoCodeView DebugInfoMSF
required_libraries = BinaryFormat Object Support DebugInfoCodeView DebugInfoMSF

View File

@ -104,7 +104,7 @@ loadPdbFile(StringRef PdbPath, std::unique_ptr<BumpPtrAllocator> &Allocator) {
if (auto EC = File->parseStreamData())
return std::move(EC);
return File;
return std::move(File);
}
Error NativeSession::createFromPdbPath(StringRef PdbPath,