File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 20
20
//! succeed.
21
21
22
22
#![ doc( html_root_url = "https://docs.rs/rayon-core/1.6" ) ]
23
+ #![ allow( elided_lifetimes_in_paths) ]
23
24
24
25
use std:: any:: Any ;
25
26
use std:: env;
Original file line number Diff line number Diff line change 2
2
#![ deny( missing_debug_implementations) ]
3
3
#![ deny( missing_docs) ]
4
4
#![ deny( unreachable_pub) ]
5
+ #![ allow( rustc:: default_hash_types) ]
6
+ #![ allow( elided_lifetimes_in_paths) ]
7
+ #![ allow( explicit_outlives_requirements) ]
5
8
6
9
//! Data-parallelism library that makes it easy to convert sequential
7
10
//! computations into parallel
Original file line number Diff line number Diff line change @@ -256,13 +256,15 @@ where
256
256
let mut block_l = BLOCK ;
257
257
let mut start_l = ptr:: null_mut ( ) ;
258
258
let mut end_l = ptr:: null_mut ( ) ;
259
+ #[ allow( deprecated) ]
259
260
let mut offsets_l: [ u8 ; BLOCK ] = unsafe { mem:: uninitialized ( ) } ;
260
261
261
262
// The current block on the right side (from `r.offset(-block_r)` to `r`).
262
263
let mut r = unsafe { l. add ( v. len ( ) ) } ;
263
264
let mut block_r = BLOCK ;
264
265
let mut start_r = ptr:: null_mut ( ) ;
265
266
let mut end_r = ptr:: null_mut ( ) ;
267
+ #[ allow( deprecated) ]
266
268
let mut offsets_r: [ u8 ; BLOCK ] = unsafe { mem:: uninitialized ( ) } ;
267
269
268
270
// Returns the number of elements between pointers `l` (inclusive) and `r` (exclusive).
You can’t perform that action at this time.
0 commit comments