1
0
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:
Zachary Turner 2015-02-10 21:40:29 +00:00
parent e177e3f1c8
commit 99035c991d

View File

@ -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 {