mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 07:59:57 +00:00
Fix build due to mismatched function signatures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228752 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
910c039f35
commit
19332b06c3
@ -75,8 +75,11 @@ class MockSession : public IPDBSession {
|
||||
std::unique_ptr<PDBSymbolExe> getGlobalScope() const override {
|
||||
return nullptr;
|
||||
}
|
||||
std::unique_ptr<PDBSymbol> getSymbolById() const override { return nullptr; }
|
||||
std::unique_ptr<IPDBSourceFile> getSourceFileById() const override {
|
||||
std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override {
|
||||
return nullptr;
|
||||
}
|
||||
std::unique_ptr<IPDBSourceFile>
|
||||
getSourceFileById(uint32_t SymbolId) const override {
|
||||
return nullptr;
|
||||
}
|
||||
std::unique_ptr<IPDBEnumDataStreams> getDebugStreams() const override {
|
||||
|
Loading…
Reference in New Issue
Block a user