]> git.proxmox.com Git - rustc.git/blobdiff - vendor/rustc-rayon/src/iter/fold.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / vendor / rustc-rayon / src / iter / fold.rs
index 0de0aa3f0b4ea67765d13df52162f7af4aa373ce..345afbd50172ed7ae14822776b1119667637f014 100644 (file)
@@ -60,7 +60,7 @@ where
     }
 }
 
-struct FoldConsumer<'c, C, ID: 'c, F: 'c> {
+struct FoldConsumer<'c, C, ID, F> {
     base: C,
     fold_op: &'c F,
     identity: &'c ID,
@@ -121,7 +121,7 @@ where
     }
 }
 
-struct FoldFolder<'r, C, ID, F: 'r> {
+struct FoldFolder<'r, C, ID, F> {
     base: C,
     fold_op: &'r F,
     item: ID,
@@ -237,7 +237,7 @@ where
     }
 }
 
-struct FoldWithConsumer<'c, C, U, F: 'c> {
+struct FoldWithConsumer<'c, C, U, F> {
     base: C,
     item: U,
     fold_op: &'c F,