diff options
author | Aaron Smith <aaron.smith@microsoft.com> | 2018-02-22 20:28:40 +0000 |
---|---|---|
committer | Aaron Smith <aaron.smith@microsoft.com> | 2018-02-22 20:28:40 +0000 |
commit | 9930e900e980c463de7ee4b4a5fa1db507e9a5cc (patch) | |
tree | 80b249ec775cc1a7d5bf19c55dc943fa9cd3949f /llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | |
parent | 1aed540ea2ba68fc252939727b06a8ecd5266d67 (diff) | |
download | bcm5719-llvm-9930e900e980c463de7ee4b4a5fa1db507e9a5cc.tar.gz bcm5719-llvm-9930e900e980c463de7ee4b4a5fa1db507e9a5cc.zip |
[PDB] Add missing override to silence buildbots
llvm-svn: 325828
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp')
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index 9cf514337bc..ff49a9cb009 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -143,7 +143,7 @@ public: } std::unique_ptr<IPDBEnumSymbols> findChildrenByAddr(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, - uint32_t Section, uint32_t Offset) const { + uint32_t Section, uint32_t Offset) const override { return nullptr; } std::unique_ptr<IPDBEnumSymbols> |