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

Commit 43b648b

Browse files
committed
update
1 parent a474534 commit 43b648b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![cfg_attr(all(intrinsics_enabled, target_family = "wasm"), feature(wasm_numeric_instr))]
66
#![cfg_attr(f128_enabled, feature(f128))]
77
#![cfg_attr(f16_enabled, feature(f16))]
8-
#![feature(core_intrinsics)]
98
#![allow(internal_features)]
109
#![allow(clippy::assign_op_pattern)]
1110
#![allow(clippy::deprecated_cfg_attr)]

src/math/hypot.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
//! - May raise overflow or underflow
1616
1717
use super::sqrt;
18+
#[allow(unused_imports)] // msrv compat
19+
use super::support::Float;
1820
use super::support::cold_path;
1921

2022
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]

0 commit comments

Comments
 (0)