mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +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:
@ -75,8 +75,11 @@ class MockSession : public IPDBSession {
|
|||||||
std::unique_ptr<PDBSymbolExe> getGlobalScope() const override {
|
std::unique_ptr<PDBSymbolExe> getGlobalScope() const override {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
std::unique_ptr<PDBSymbol> getSymbolById() const override { return nullptr; }
|
std::unique_ptr<PDBSymbol> getSymbolById(uint32_t SymbolId) const override {
|
||||||
std::unique_ptr<IPDBSourceFile> getSourceFileById() const override {
|
return nullptr;
|
||||||
|
}
|
||||||
|
std::unique_ptr<IPDBSourceFile>
|
||||||
|
getSourceFileById(uint32_t SymbolId) const override {
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
std::unique_ptr<IPDBEnumDataStreams> getDebugStreams() const override {
|
std::unique_ptr<IPDBEnumDataStreams> getDebugStreams() const override {
|
||||||
|
Reference in New Issue
Block a user