summaryrefslogtreecommitdiffstats
path: root/vendor/object/src/read/pe/data_directory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/object/src/read/pe/data_directory.rs')
-rw-r--r--vendor/object/src/read/pe/data_directory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/object/src/read/pe/data_directory.rs b/vendor/object/src/read/pe/data_directory.rs
index f5d98774e..0e10244bf 100644
--- a/vendor/object/src/read/pe/data_directory.rs
+++ b/vendor/object/src/read/pe/data_directory.rs
@@ -178,7 +178,7 @@ impl pe::ImageDataDirectory {
/// not desirable for all data directories.
/// - It uses the `virtual_address` of the directory entry as an address,
/// which is not valid for `IMAGE_DIRECTORY_ENTRY_SECURITY`.
- pub fn file_range<'data>(&self, sections: &SectionTable<'data>) -> Result<(u32, u32)> {
+ pub fn file_range(&self, sections: &SectionTable<'_>) -> Result<(u32, u32)> {
let (offset, section_size) = sections
.pe_file_range_at(self.virtual_address.get(LE))
.read_error("Invalid data dir virtual address")?;