[llvm] r325828 - [PDB] Add missing override to silence buildbots
Aaron Smith via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 22 12:28:40 PST 2018
Author: asmith
Date: Thu Feb 22 12:28:40 2018
New Revision: 325828
URL: http://llvm.org/viewvc/llvm-project?rev=325828&view=rev
Log:
[PDB] Add missing override to silence buildbots
Modified:
llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp
Modified: llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp?rev=325828&r1=325827&r2=325828&view=diff
==============================================================================
--- llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp (original)
+++ llvm/trunk/unittests/DebugInfo/PDB/PDBApiTest.cpp Thu Feb 22 12:28:40 2018
@@ -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>
More information about the llvm-commits
mailing list