From b7471814cf6ba5f61c749a4b6e554808913b64ad Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 18 Sep 2018 16:58:17 +0000 Subject: [PATCH] Fix function signature to actually be an override. llvm-svn: 342496 --- llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp index f43404f..948bde1 100644 --- a/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp @@ -166,7 +166,8 @@ public: MockRawSymbol(PDB_SymType SymType) : Type(SymType) {} - void dump(raw_ostream &OS, int Indent) const override {} + void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields, + PdbSymbolIdField RecurseIdFields) const override {} std::unique_ptr findChildren(PDB_SymType Type) const override { -- 2.7.4