Skip to content

Commit f2b4e2e

Browse files
committed
chore: fix new Clippy lints
1 parent 087f50a commit f2b4e2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/math.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#[allow(dead_code)] // False positive
1+
#![cfg(not(feature = "std"))]
2+
#![allow(dead_code)] // False-positive
23

34
/// Provides math operations for doubles on `no_std` targets that are not available on `core`.
45
pub trait F64MathExt {

0 commit comments

Comments
 (0)