From 19332b06c35ab8e490b0c01c607499cbb430b80f Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 10 Feb 2015 21:40:29 +0000 Subject: [PATCH] Fix build due to mismatched function signatures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228752 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/DebugInfo/PDB/PDBApiTest.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/unittests/DebugInfo/PDB/PDBApiTest.cpp b/unittests/DebugInfo/PDB/PDBApiTest.cpp index 4f838a0ded6..5c9b377ba4b 100644 --- a/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -75,8 +75,11 @@ class MockSession : public IPDBSession { std::unique_ptr getGlobalScope() const override { return nullptr; } - std::unique_ptr getSymbolById() const override { return nullptr; } - std::unique_ptr getSourceFileById() const override { + std::unique_ptr getSymbolById(uint32_t SymbolId) const override { + return nullptr; + } + std::unique_ptr + getSourceFileById(uint32_t SymbolId) const override { return nullptr; } std::unique_ptr getDebugStreams() const override { -- 2.11.0