Skip to content

Commit 436c575

Browse files
committed
Fix Linux build broken by f06e656
1 parent 96c4460 commit 436c575

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/tools/llvm-readobj/ELFDumper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5394,7 +5394,7 @@ void GNUStyle<ELFT>::printDependentLibs(const ELFFile<ELFT> *Obj) {
53945394
SecEntries.push_back(NameOffset{Lib, Offset});
53955395
};
53965396

5397-
printDependentLibsHelper(Obj, OnSectionStart, OnLibEntry);
5397+
this->printDependentLibsHelper(Obj, OnSectionStart, OnLibEntry);
53985398
if (SectionStarted)
53995399
PrintSection();
54005400
}
@@ -6666,7 +6666,7 @@ void LLVMStyle<ELFT>::printELFLinkerOptions(const ELFFile<ELFT> *Obj) {
66666666
template <class ELFT>
66676667
void LLVMStyle<ELFT>::printDependentLibs(const ELFFile<ELFT> *Obj) {
66686668
ListScope L(W, "DependentLibs");
6669-
printDependentLibsHelper(
6669+
this->printDependentLibsHelper(
66706670
Obj, [](const Elf_Shdr &) {},
66716671
[this](StringRef Lib, uint64_t) { W.printString(Lib); });
66726672
}

0 commit comments

Comments
 (0)