From: Zachary Turner Date: Tue, 10 Feb 2015 22:56:21 +0000 (+0000) Subject: Add missing function and header include. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=88972080a3681607fa34f5c05c593068bf2add5c;p=oota-llvm.git Add missing function and header include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228758 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/DebugInfo/PDB/PDBApiTest.cpp b/unittests/DebugInfo/PDB/PDBApiTest.cpp index fd65d10dfed..1917097c783 100644 --- a/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/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 {