From: Zachary Turner Date: Tue, 10 Feb 2015 22:56:21 +0000 (+0000) Subject: Add missing function and header include. X-Git-Tag: llvmorg-3.7.0-rc1~12515 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c9c9c3489aa8a7218deeae9024c96482cbfc9dfa;p=platform%2Fupstream%2Fllvm.git Add missing function and header include. llvm-svn: 228758 --- diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index fd65d10d..1917097 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -7,6 +7,7 @@ // //===----------------------------------------------------------------------===// +#include #include #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h" @@ -78,6 +79,10 @@ class MockSession : public IPDBSession { const PDBSymbolCompiland &Compiland) const override { return nullptr; } + + std::unique_ptr getDebugStreams() const override { + return nullptr; + } }; class MockRawSymbol : public IPDBRawSymbol {