diff options
author | Zachary Turner <zturner@google.com> | 2015-02-10 21:40:29 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-10 21:40:29 +0000 |
commit | 0ca2bde38ea0747dc94b79292fd48c5d4c2a64ac (patch) | |
tree | 858b883db3c475a62e478baece776e83b891c044 /llvm/unittests/DebugInfo/PDB | |
parent | 0ca59894aa609c67c41bd8569a111a99a1c91ac0 (diff) | |
download | bcm5719-llvm-0ca2bde38ea0747dc94b79292fd48c5d4c2a64ac.tar.gz bcm5719-llvm-0ca2bde38ea0747dc94b79292fd48c5d4c2a64ac.zip |
Fix build due to mismatched function signatures.
llvm-svn: 228752
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB')
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index 4f838a0ded6..5c9b377ba4b 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -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 { |