File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 2020//! succeed.
2121
2222#![ doc( html_root_url = "https://docs.rs/rayon-core/1.6" ) ]
23+ #![ allow( elided_lifetimes_in_paths) ]
2324
2425use std:: any:: Any ;
2526use std:: env;
Original file line number Diff line number Diff line change 22#![ deny( missing_debug_implementations) ]
33#![ deny( missing_docs) ]
44#![ deny( unreachable_pub) ]
5+ #![ allow( rustc:: default_hash_types) ]
6+ #![ allow( elided_lifetimes_in_paths) ]
7+ #![ allow( explicit_outlives_requirements) ]
58
69//! Data-parallelism library that makes it easy to convert sequential
710//! computations into parallel
Original file line number Diff line number Diff line change @@ -256,13 +256,15 @@ where
256256 let mut block_l = BLOCK ;
257257 let mut start_l = ptr:: null_mut ( ) ;
258258 let mut end_l = ptr:: null_mut ( ) ;
259+ #[ allow( deprecated) ]
259260 let mut offsets_l: [ u8 ; BLOCK ] = unsafe { mem:: uninitialized ( ) } ;
260261
261262 // The current block on the right side (from `r.offset(-block_r)` to `r`).
262263 let mut r = unsafe { l. add ( v. len ( ) ) } ;
263264 let mut block_r = BLOCK ;
264265 let mut start_r = ptr:: null_mut ( ) ;
265266 let mut end_r = ptr:: null_mut ( ) ;
267+ #[ allow( deprecated) ]
266268 let mut offsets_r: [ u8 ; BLOCK ] = unsafe { mem:: uninitialized ( ) } ;
267269
268270 // Returns the number of elements between pointers `l` (inclusive) and `r` (exclusive).
You can’t perform that action at this time.
0 commit comments