Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 64ef452

Browse files
committed
Allow internal_features lint when building with "unstable"
1 parent cb2ffdf commit 64ef452

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
//! libm in pure Rust
22
#![deny(warnings)]
33
#![no_std]
4-
#![cfg_attr(all(feature = "unstable"), feature(core_intrinsics))]
4+
#![cfg_attr(feature = "unstable", allow(internal_features))]
5+
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
56
#![allow(clippy::unreadable_literal)]
67
#![allow(clippy::many_single_char_names)]
78
#![allow(clippy::needless_return)]

0 commit comments

Comments
 (0)