Fix build due to mismatched function signatures.
llvm-svn: 228752
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
index 4f838a0..5c9b377 100644
--- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
+++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
@@ -75,8 +75,11 @@
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 {