mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix build due to mismatched function signatures.
llvm-svn: 228752
This commit is contained in:
parent
e177e3f1c8
commit
99035c991d
@ -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