Skip to content

Commit

Permalink
Remove reference
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Mar 10, 2024
1 parent d30b870 commit 1c9c852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ELF/ExeLayout.hpp
Expand Up @@ -552,7 +552,7 @@ class LIEF_LOCAL ExeLayout : public Layout {


std::sort(non_relative_rels.begin(), non_relative_rels.end(),
[&elf_class] (const Relocation* lhs, const Relocation* rhs) {
[elf_class] (const Relocation* lhs, const Relocation* rhs) {
if (lhs->r_info(elf_class) != rhs->r_info(elf_class)) {
return lhs->r_info(elf_class) < rhs->r_info(elf_class);
}
Expand Down

0 comments on commit 1c9c852

Please sign in to comment.