Index: tools/relocation_packer/src/elf_file.h |
diff --git a/tools/relocation_packer/src/elf_file.h b/tools/relocation_packer/src/elf_file.h |
index 51239c01691c8420f24efedf7ba4d8870e51b8c8..6550274976590581ff7a91a65894ec619a5b0ead 100644 |
--- a/tools/relocation_packer/src/elf_file.h |
+++ b/tools/relocation_packer/src/elf_file.h |
@@ -100,14 +100,12 @@ class ElfFile { |
// Templated packer, helper for PackRelocations(). Rel type is one of |
// ELF::Rel or ELF::Rela. |
template <typename Rel> |
- bool PackTypedRelocations(const std::vector<Rel>& relocations, |
- Elf_Data* data); |
+ bool PackTypedRelocations(const std::vector<Rel>& relocations); |
// Templated unpacker, helper for UnpackRelocations(). Rel type is one of |
// ELF::Rel or ELF::Rela. |
template <typename Rel> |
- bool UnpackTypedRelocations(const std::vector<uint8_t>& packed, |
- Elf_Data* data); |
+ bool UnpackTypedRelocations(const std::vector<uint8_t>& packed); |
// Write ELF file changes. |
void Flush(); |