Skip to content

Commit 3723676

Browse files
committed
Warn from incomplete features on x86_64
1 parent c579103 commit 3723676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#![warn(unsafe_op_in_unsafe_fn)]
77
#![warn(clippy::transmute_ptr_to_ptr)]
88
#![allow(clippy::missing_safety_doc)]
9-
#![allow(incomplete_features)]
9+
#![cfg_attr(target_arch = "aarch64", allow(incomplete_features))]
1010
#![cfg_attr(target_arch = "x86_64", feature(abi_x86_interrupt))]
1111
#![feature(allocator_api)]
1212
#![feature(asm_const)]

0 commit comments

Comments
 (0)