@@ -354,7 +354,7 @@ impl platform::Platform for Elf {
354354 * memory_offsets. get ( part_id:: EH_FRAME )
355355 }
356356
357- fn finalise_find_required_sections < ' data > ( groups : & [ layout:: GroupState < ' data , Elf > ] ) {
357+ fn finalise_find_required_sections ( groups : & [ layout:: GroupState < Elf > ] ) {
358358 tracing:: debug!( target: "metrics" , total = groups
359359 . iter( )
360360 . map( |g| g. common. format_specific. exception_frame_count)
@@ -580,8 +580,8 @@ impl platform::Platform for Elf {
580580 & [ STACK_SEGMENT_DEF ]
581581 }
582582
583- fn create_linker_defined_symbols < ' data > (
584- symbols : & mut crate :: parsing:: InternalSymbolsBuilder < ' data > ,
583+ fn create_linker_defined_symbols (
584+ symbols : & mut crate :: parsing:: InternalSymbolsBuilder ,
585585 output_kind : OutputKind ,
586586 ) {
587587 // The undefined symbol must always be symbol 0.
@@ -1782,7 +1782,7 @@ fn allocate_sysv_hash(
17821782 return Ok ( ( ) ) ;
17831783 }
17841784
1785- let bucket_count = ( ( num_defs / 2 ) . max ( 1 ) ) . next_power_of_two ( ) as u32 ;
1785+ let bucket_count = ( num_defs / 2 ) . max ( 1 ) . next_power_of_two ( ) as u32 ;
17861786 // Whereas `num_defs` above is the number of definitions, this is the number of dynamic
17871787 // symbols, which also includes undefined dynamic symbols.
17881788 let num_dynsym = * current_sizes. get ( part_id:: DYNSYM ) / SYMTAB_ENTRY_SIZE ;
@@ -2943,7 +2943,7 @@ pub(crate) struct NonAddressableIndexes {
29432943}
29442944
29452945impl platform:: NonAddressableIndexes for NonAddressableIndexes {
2946- fn new < ' data , P : Platform > ( symbol_db : & crate :: symbol_db:: SymbolDb < ' data , P > ) -> Self {
2946+ fn new < P : Platform > ( symbol_db : & crate :: symbol_db:: SymbolDb < P > ) -> Self {
29472947 Self {
29482948 // Allocate version indexes starting from after the local and global indexes and any
29492949 // versions defined by a version script.
0 commit comments