]> git.proxmox.com Git - rustc.git/blobdiff - vendor/rustc-rayon/src/iter/update.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / vendor / rustc-rayon / src / iter / update.rs
index e822f48787057a2e3a2f498a82407cbde9cc3559..3e8eabe0d11008946cc19c9224337c8ea8891185 100644 (file)
@@ -107,7 +107,7 @@ where
 
 /// ////////////////////////////////////////////////////////////////////////
 
-struct UpdateProducer<'f, P, F: 'f> {
+struct UpdateProducer<'f, P, F> {
     base: P,
     update_op: &'f F,
 }
@@ -163,7 +163,7 @@ where
 /// ////////////////////////////////////////////////////////////////////////
 /// Consumer implementation
 
-struct UpdateConsumer<'f, C, F: 'f> {
+struct UpdateConsumer<'f, C, F> {
     base: C,
     update_op: &'f F,
 }
@@ -218,7 +218,7 @@ where
     }
 }
 
-struct UpdateFolder<'f, C, F: 'f> {
+struct UpdateFolder<'f, C, F> {
     base: C,
     update_op: &'f F,
 }