summaryrefslogtreecommitdiff
path: root/Kernel/ELF
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-19 02:03:56 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-19 02:03:56 +0200
commit1fd90b09f836f90034d7c71e88f4aa02093ddc00 (patch)
tree3a27c58bd7f150d55335cdacc4e75052be9c8474 /Kernel/ELF
parent6e305bf838eb86d03530be43fee9bd5f3c5d68cd (diff)
downloadserenity-1fd90b09f836f90034d7c71e88f4aa02093ddc00.zip
Kernel: Remove an unused ELFLoader member.
Diffstat (limited to 'Kernel/ELF')
-rw-r--r--Kernel/ELF/ELFLoader.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/ELF/ELFLoader.h b/Kernel/ELF/ELFLoader.h
index 972783a4d1..143798c1e5 100644
--- a/Kernel/ELF/ELFLoader.h
+++ b/Kernel/ELF/ELFLoader.h
@@ -42,8 +42,6 @@ private:
};
ELFImage m_image;
- HashMap<String, char*> m_sections;
-
struct SortedSymbol {
dword address;
const char* name;