diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-23 18:19:47 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-23 19:43:44 +0100 |
commit | 37420f1bafce8c8ce4052a45341ce4f5bf6b879c (patch) | |
tree | 6a7797940de4ce761f7e37df42810938f6b39d6f /Userland/Libraries/LibELF/DynamicObject.h | |
parent | 145923bdc951bef4c6c323da80c883a98377b982 (diff) | |
download | serenity-37420f1bafce8c8ce4052a45341ce4f5bf6b879c.zip |
LibELF: Move ELF hash functions to their own file (and make constexpr)
Diffstat (limited to 'Userland/Libraries/LibELF/DynamicObject.h')
-rw-r--r-- | Userland/Libraries/LibELF/DynamicObject.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibELF/DynamicObject.h b/Userland/Libraries/LibELF/DynamicObject.h index e65b02652f..dd6d039cfc 100644 --- a/Userland/Libraries/LibELF/DynamicObject.h +++ b/Userland/Libraries/LibELF/DynamicObject.h @@ -200,9 +200,6 @@ public: Optional<Symbol> lookup_symbol(const StringView& name) const; private: - static u32 calculate_elf_hash(const StringView& name); - static u32 calculate_gnu_hash(const StringView& name); - Optional<Symbol> lookup_elf_symbol(const StringView& name) const; Optional<Symbol> lookup_gnu_symbol(const StringView& name) const; |