From 88972080a3681607fa34f5c05c593068bf2add5c Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 10 Feb 2015 22:56:21 +0000 Subject: [PATCH] Add missing function and header include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228758 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/DebugInfo/PDB/PDBApiTest.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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 { -- 2.34.1