forked from OSchip/llvm-project
Fix build. NFC.
This commit is contained in:
parent
4927ae0858
commit
a13dce1d90
|
@ -18,5 +18,5 @@
|
|||
type = Library
|
||||
name = DebugInfoPDB
|
||||
parent = DebugInfo
|
||||
required_libraries = Object Support DebugInfoCodeView DebugInfoMSF
|
||||
required_libraries = BinaryFormat Object Support DebugInfoCodeView DebugInfoMSF
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue