@@ -472,10 +472,10 @@ impl<S: Stage> AttributeParser<S> for UsedParser {
472472 }
473473}
474474
475- fn parse_tf_attribute < ' c , S : Stage > (
476- cx : & ' c mut AcceptContext < ' _ , ' _ , S > ,
477- args : & ' c ArgParser ,
478- ) -> impl IntoIterator < Item = ( Symbol , Span ) > + ' c {
475+ fn parse_tf_attribute < S : Stage > (
476+ cx : & mut AcceptContext < ' _ , ' _ , S > ,
477+ args : & ArgParser ,
478+ ) -> impl IntoIterator < Item = ( Symbol , Span ) > {
479479 let mut features = Vec :: new ( ) ;
480480 let ArgParser :: List ( list) = args else {
481481 cx. expected_list ( cx. attr_span ) ;
@@ -529,10 +529,10 @@ impl<S: Stage> CombineAttributeParser<S> for TargetFeatureParser {
529529 } ;
530530 const TEMPLATE : AttributeTemplate = template ! ( List : & [ "enable = \" feat1, feat2\" " ] ) ;
531531
532- fn extend < ' c > (
533- cx : & ' c mut AcceptContext < ' _ , ' _ , S > ,
534- args : & ' c ArgParser ,
535- ) -> impl IntoIterator < Item = Self :: Item > + ' c {
532+ fn extend (
533+ cx : & mut AcceptContext < ' _ , ' _ , S > ,
534+ args : & ArgParser ,
535+ ) -> impl IntoIterator < Item = Self :: Item > {
536536 parse_tf_attribute ( cx, args)
537537 }
538538
@@ -567,10 +567,10 @@ impl<S: Stage> CombineAttributeParser<S> for ForceTargetFeatureParser {
567567 Allow ( Target :: Method ( MethodKind :: TraitImpl ) ) ,
568568 ] ) ;
569569
570- fn extend < ' c > (
571- cx : & ' c mut AcceptContext < ' _ , ' _ , S > ,
572- args : & ' c ArgParser ,
573- ) -> impl IntoIterator < Item = Self :: Item > + ' c {
570+ fn extend (
571+ cx : & mut AcceptContext < ' _ , ' _ , S > ,
572+ args : & ArgParser ,
573+ ) -> impl IntoIterator < Item = Self :: Item > {
574574 parse_tf_attribute ( cx, args)
575575 }
576576}
0 commit comments