From 6715ca3e1686f3c971a44f8dfe28f091a4100d63 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 18 Jan 2021 18:20:49 +0100 Subject: [PATCH] LibELF: Remove unused m_global_symbol_lookup_func from DynamicObject This was refactored in 3e815ad, leaving this unused member behind. --- Userland/Libraries/LibELF/DynamicObject.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibELF/DynamicObject.h b/Userland/Libraries/LibELF/DynamicObject.h index 7b03c43c6d..1ce81c9b1e 100644 --- a/Userland/Libraries/LibELF/DynamicObject.h +++ b/Userland/Libraries/LibELF/DynamicObject.h @@ -288,8 +288,6 @@ public: Elf32_Addr patch_plt_entry(u32 relocation_offset); SymbolLookupResult lookup_symbol(const ELF::DynamicObject::Symbol& symbol) const; - using SymbolLookupFunction = DynamicObject::SymbolLookupResult (*)(const char*); - SymbolLookupFunction m_global_symbol_lookup_func { nullptr }; bool elf_is_dynamic() const { return m_is_elf_dynamic; }