Skip to content

Commit 34227d8

Browse files
committed
Fix elided_named_lifetimes warning
1 parent 38d49aa commit 34227d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/symbolize/gimli/macho.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ impl<'a> Object<'a> {
250250
/// Try to load a context for an object file.
251251
///
252252
/// If dsymutil was not run, then the DWARF may be found in the source object files.
253-
pub(super) fn search_object_map<'b>(&'b mut self, addr: u64) -> Option<(&Context<'b>, u64)> {
253+
pub(super) fn search_object_map<'b>(&'b mut self, addr: u64) -> Option<(&'b Context<'b>, u64)> {
254254
// `object_map` contains a map from addresses to symbols and object paths.
255255
// Look up the address and get a mapping for the object.
256256
let object_map = self.object_map.as_ref()?;

0 commit comments

Comments
 (0)