From: Zachary Turner Date: Tue, 10 Feb 2015 21:40:29 +0000 (+0000) Subject: Fix build due to mismatched function signatures. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=19332b06c35ab8e490b0c01c607499cbb430b80f;p=oota-llvm.git Fix build due to mismatched function signatures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228752 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 {