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

Commit 295a195

Browse files
committed
Add cr_log from core-math
1 parent 2a52f32 commit 295a195

File tree

2 files changed

+4277
-2
lines changed

2 files changed

+4277
-2
lines changed

src/lib.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! libm in pure Rust
22
#![no_std]
3-
#![cfg_attr(intrinsics_enabled, allow(internal_features))]
4-
#![cfg_attr(intrinsics_enabled, feature(core_intrinsics))]
3+
// #![cfg_attr(intrinsics_enabled, allow(internal_features))]
4+
// #![cfg_attr(intrinsics_enabled, feature(core_intrinsics))]
55
#![allow(clippy::assign_op_pattern)]
66
#![allow(clippy::deprecated_cfg_attr)]
77
#![allow(clippy::eq_op)]
@@ -14,6 +14,8 @@
1414
#![allow(clippy::needless_return)]
1515
#![allow(clippy::unreadable_literal)]
1616
#![allow(clippy::zero_divided_by_zero)]
17+
#![allow(internal_features)]
18+
#![feature(core_intrinsics)]
1719

1820
mod libm_helper;
1921
mod math;

0 commit comments

Comments
 (0)