summaryrefslogtreecommitdiffstats
path: root/Source/cmELF.h
diff options
context:
space:
mode:
authorJames Cowgill <james410@cowgill.org.uk>2016-10-05 15:57:24 (GMT)
committerBrad King <brad.king@kitware.com>2016-10-07 12:30:00 (GMT)
commit15762b72b456998ac0f87ceec750a20e9872f325 (patch)
tree20c96ca40399ace1e09f661186c00f7f94f51be1 /Source/cmELF.h
parentcd4f573ae9f4ded1cb386698f90c7ccf1504f094 (diff)
downloadCMake-15762b72b456998ac0f87ceec750a20e9872f325.zip
CMake-15762b72b456998ac0f87ceec750a20e9872f325.tar.gz
CMake-15762b72b456998ac0f87ceec750a20e9872f325.tar.bz2
elf: Remove GetDynamicEntryCount and ReadBytes methods
These are no longer used after the DynamicEntryList changes.
Diffstat (limited to 'Source/cmELF.h')
-rw-r--r--Source/cmELF.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmELF.h b/Source/cmELF.h
index 9c56be7..763a240 100644
--- a/Source/cmELF.h
+++ b/Source/cmELF.h
@@ -72,10 +72,6 @@ public:
/** Get the number of ELF sections present. */
unsigned int GetNumberOfSections() const;
- /** Get the number of DYNAMIC section entries before the first
- DT_NULL. Returns zero on error. */
- unsigned int GetDynamicEntryCount() const;
-
/** Get the position of a DYNAMIC section header entry. Returns
zero on error. */
unsigned long GetDynamicEntryPosition(int index) const;
@@ -89,9 +85,6 @@ public:
std::vector<char> EncodeDynamicEntries(
const DynamicEntryList& entries) const;
- /** Read bytes from the file. */
- bool ReadBytes(unsigned long pos, unsigned long size, char* buf) const;
-
/** Get the SONAME field if any. */
bool GetSOName(std::string& soname);
StringEntry const* GetSOName();