Add missing function and header include.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228758 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Zachary Turner 2015-02-10 22:56:21 +00:00
parent b7c34eb510
commit 88972080a3

View File

@ -7,6 +7,7 @@
//
//===----------------------------------------------------------------------===//
#include <memory>
#include <unordered_map>
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
@ -78,6 +79,10 @@ class MockSession : public IPDBSession {
const PDBSymbolCompiland &Compiland) const override {
return nullptr;
}
std::unique_ptr<IPDBEnumDataStreams> getDebugStreams() const override {
return nullptr;
}
};
class MockRawSymbol : public IPDBRawSymbol {