Skip to content

Commit 1245618

Browse files
bend-nAmanieu
authored andcommitted
allow unnecessary transmutes
1 parent 5ed2e5a commit 1245618

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

crates/core_arch/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
)]
4444
#![cfg_attr(test, feature(test, abi_vectorcall, stdarch_internal))]
4545
#![deny(clippy::missing_inline_in_public_items)]
46-
#![allow(unknown_lints, unnecessary_transmutes)]
4746
#![allow(
4847
clippy::identity_op,
4948
clippy::inline_always,

crates/core_arch/src/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! `core_arch`
22
3+
#![allow(unknown_lints, unnecessary_transmutes)]
4+
35
#[macro_use]
46
mod macros;
57

0 commit comments

Comments
 (0)