Skip to content

Commit 099be86

Browse files
committed
Fix broken build after #84678 (sorry).
1 parent 7dfa839 commit 099be86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ Error DumpOutputStyle::dumpStringTableFromPdb() {
10701070
if (IS->name_ids().empty())
10711071
P.formatLine("Empty");
10721072
else {
1073-
auto MaxID = llvm::max_element(IS->name_ids(), IS->name_ids());
1073+
auto MaxID = llvm::max_element(IS->name_ids());
10741074
uint32_t Digits = NumDigits(*MaxID);
10751075

10761076
P.formatLine("{0} | {1}", fmt_align("ID", AlignStyle::Right, Digits),

0 commit comments

Comments
 (0)