Add missing function and header include.
authorZachary Turner <zturner@google.com>
Tue, 10 Feb 2015 22:56:21 +0000 (22:56 +0000)
committerZachary Turner <zturner@google.com>
Tue, 10 Feb 2015 22:56:21 +0000 (22:56 +0000)
llvm-svn: 228758

llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp

index fd65d10..1917097 100644 (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 {