Skip to content

Commit 0043453

Browse files
eduardosmAmanieu
authored andcommitted
Silence four additional clippy warnings and sort them alphabetically
1 parent 48ba9a3 commit 0043453

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

crates/core_arch/src/lib.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,21 @@
3838
#![cfg_attr(test, feature(test, abi_vectorcall))]
3939
#![deny(clippy::missing_inline_in_public_items)]
4040
#![allow(
41+
clippy::identity_op,
4142
clippy::inline_always,
4243
clippy::too_many_arguments,
4344
clippy::cast_sign_loss,
4445
clippy::cast_lossless,
4546
clippy::cast_possible_wrap,
4647
clippy::cast_possible_truncation,
4748
clippy::cast_precision_loss,
48-
clippy::shadow_reuse,
4949
clippy::cognitive_complexity,
50+
clippy::many_single_char_names,
51+
clippy::missing_safety_doc,
52+
clippy::shadow_reuse,
5053
clippy::similar_names,
51-
clippy::many_single_char_names
54+
clippy::unusual_byte_groupings,
55+
clippy::wrong_self_convention
5256
)]
5357
#![cfg_attr(test, allow(unused_imports))]
5458
#![no_std]

0 commit comments

Comments
 (0)