diff options
author | Zachary Turner <zturner@google.com> | 2015-02-10 22:56:21 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-10 22:56:21 +0000 |
commit | c9c9c3489aa8a7218deeae9024c96482cbfc9dfa (patch) | |
tree | c3bbe1b4d45b50cebb359741f000ad1e0434acc9 /llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | |
parent | 37386143b86b19b01a53d47f7f5ee22e93e1feab (diff) | |
download | bcm5719-llvm-c9c9c3489aa8a7218deeae9024c96482cbfc9dfa.tar.gz bcm5719-llvm-c9c9c3489aa8a7218deeae9024c96482cbfc9dfa.zip |
Add missing function and header include.
llvm-svn: 228758
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp')
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index fd65d10dfed..1917097c783 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -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 { |