Skip to content

Commit

Permalink
Merge pull request #664 from ChrisDenton/check-please
Browse files Browse the repository at this point in the history
Fix elided_named_lifetimes warning
  • Loading branch information
ChrisDenton authored Sep 6, 2024
2 parents 5107f26 + 34227d8 commit c521d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbolize/gimli/macho.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ impl<'a> Object<'a> {
/// Try to load a context for an object file.
///
/// If dsymutil was not run, then the DWARF may be found in the source object files.
pub(super) fn search_object_map<'b>(&'b mut self, addr: u64) -> Option<(&Context<'b>, u64)> {
pub(super) fn search_object_map<'b>(&'b mut self, addr: u64) -> Option<(&'b Context<'b>, u64)> {
// `object_map` contains a map from addresses to symbols and object paths.
// Look up the address and get a mapping for the object.
let object_map = self.object_map.as_ref()?;
Expand Down

0 comments on commit c521d9a

Please sign in to comment.