File tree 7 files changed +14
-0
lines changed
7 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 330
330
) ) ]
331
331
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
332
332
#![ cfg_attr( not( feature = "std" ) , no_std) ]
333
+ // matches! requires Rust 1.42
334
+ #![ allow( clippy:: match_like_matches_macro) ]
333
335
334
336
use cfg_if:: cfg_if;
335
337
Original file line number Diff line number Diff line change 91
91
) ) ]
92
92
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
93
93
#![ cfg_attr( not( feature = "std" ) , no_std) ]
94
+ // matches! requires Rust 1.42
95
+ #![ allow( clippy:: match_like_matches_macro) ]
94
96
95
97
use cfg_if:: cfg_if;
96
98
Original file line number Diff line number Diff line change 59
59
#![ cfg_attr( not( feature = "std" ) , no_std) ]
60
60
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
61
61
#![ cfg_attr( feature = "nightly" , feature( const_fn) ) ]
62
+ // matches! requires Rust 1.42
63
+ #![ allow( clippy:: match_like_matches_macro) ]
62
64
63
65
use cfg_if:: cfg_if;
64
66
Original file line number Diff line number Diff line change 15
15
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
16
16
#![ cfg_attr( not( feature = "std" ) , no_std) ]
17
17
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
18
+ // matches! requires Rust 1.42
19
+ #![ allow( clippy:: match_like_matches_macro) ]
18
20
19
21
#[ cfg_attr( feature = "nightly" , cfg( target_has_atomic = "ptr" ) ) ]
20
22
cfg_if:: cfg_if! {
Original file line number Diff line number Diff line change 10
10
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
11
11
#![ cfg_attr( not( feature = "std" ) , no_std) ]
12
12
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
13
+ // matches! requires Rust 1.42
14
+ #![ allow( clippy:: match_like_matches_macro) ]
13
15
14
16
use cfg_if:: cfg_if;
15
17
Original file line number Diff line number Diff line change 34
34
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
35
35
#![ cfg_attr( not( feature = "std" ) , no_std) ]
36
36
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
37
+ // matches! requires Rust 1.42
38
+ #![ allow( clippy:: match_like_matches_macro) ]
37
39
38
40
#[ cfg_attr( feature = "nightly" , cfg( target_has_atomic = "ptr" ) ) ]
39
41
pub mod atomic;
Original file line number Diff line number Diff line change 48
48
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
49
49
#![ cfg_attr( not( feature = "std" ) , no_std) ]
50
50
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
51
+ // matches! requires Rust 1.42
52
+ #![ allow( clippy:: match_like_matches_macro) ]
51
53
52
54
#[ cfg_attr( feature = "nightly" , cfg( target_has_atomic = "ptr" ) ) ]
53
55
pub use crossbeam_utils:: atomic;
You can’t perform that action at this time.
0 commit comments