@@ -715,7 +715,7 @@ struct FmtTableData {
715715/// struct MySymbolResolver { map: HashMap<u64, String> }
716716/// impl SymbolResolver for MySymbolResolver {
717717/// fn symbol(&mut self, _instruction: &Instruction, _operand: u32, _instruction_operand: Option<u32>,
718- /// address: u64, _address_size: u32) -> Option<SymbolResult> {
718+ /// address: u64, _address_size: u32) -> Option<SymbolResult<'_> > {
719719/// if let Some(symbol_string) = self.map.get(&address) {
720720/// // The 'address' arg is the address of the symbol and doesn't have to be identical
721721/// // to the 'address' arg passed to symbol(). If it's different from the input
@@ -1811,7 +1811,7 @@ impl<TraitOptions: SpecializedFormatterTraitOptions> SpecializedFormatter<TraitO
18111811/// struct MySymbolResolver { map: HashMap<u64, String> }
18121812/// impl SymbolResolver for MySymbolResolver {
18131813/// fn symbol(&mut self, _instruction: &Instruction, _operand: u32, _instruction_operand: Option<u32>,
1814- /// address: u64, _address_size: u32) -> Option<SymbolResult> {
1814+ /// address: u64, _address_size: u32) -> Option<SymbolResult<'_> > {
18151815/// if let Some(symbol_string) = self.map.get(&address) {
18161816/// // The 'address' arg is the address of the symbol and doesn't have to be identical
18171817/// // to the 'address' arg passed to symbol(). If it's different from the input
0 commit comments