diff options
author | Zachary Turner <zturner@google.com> | 2018-03-13 17:58:28 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-03-13 17:58:28 +0000 |
commit | a389c84df5e689ce05270040593c3146ae14e4f5 (patch) | |
tree | 89c6aeb8b7060aec4d683e46871006e5a5d89cbe /llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | |
parent | 82d60d6b29808baf25cfd488306a79899b83aa5b (diff) | |
download | bcm5719-llvm-a389c84df5e689ce05270040593c3146ae14e4f5.tar.gz bcm5719-llvm-a389c84df5e689ce05270040593c3146ae14e4f5.zip |
Implement pure virtual method to fix build.
llvm-svn: 327431
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 f70fca7e305..4cc47aa4540 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -11,6 +11,7 @@ #include "llvm/ADT/STLExtras.h" #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h" +#include "llvm/DebugInfo/PDB/IPDBInjectedSource.h" #include "llvm/DebugInfo/PDB/IPDBLineNumber.h" #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h" #include "llvm/DebugInfo/PDB/IPDBSession.h" @@ -124,6 +125,10 @@ class MockSession : public IPDBSession { std::unique_ptr<IPDBEnumTables> getEnumTables() const override { return nullptr; } + + std::unique_ptr<IPDBEnumInjectedSources> getInjectedSources() const override { + return nullptr; + } }; class MockRawSymbol : public IPDBRawSymbol { |