We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f73a5 commit e6b64bdCopy full SHA for e6b64bd
libm/src/math/mod.rs
@@ -1,3 +1,5 @@
1
+#![allow(clippy::approx_constant)] // many false positives
2
+
3
macro_rules! force_eval {
4
($e:expr) => {
5
unsafe { ::core::ptr::read_volatile(&$e) }
libm/src/math/support/mod.rs
@@ -11,7 +11,8 @@ mod int_traits;
11
12
#[allow(unused_imports)]
13
pub use big::{i256, u256};
14
-#[allow(unused_imports)]
+// Clippy seems to have a false positive
15
+#[allow(unused_imports, clippy::single_component_path_imports)]
16
pub(crate) use cfg_if;
17
pub use env::{FpResult, Round, Status};
18
0 commit comments