We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
math
1 parent a3582a8 commit 00baf68Copy full SHA for 00baf68
src/lib.rs
@@ -45,6 +45,9 @@ mod macros;
45
pub mod float;
46
pub mod int;
47
48
+// For some reason, we still get clippy error `clippy::deprecated_cfg_attr` even though, we have
49
+// used `allow(clippy::all)` in the file. So, we are disabling the clippy check for this file.
50
+#[cfg(not(clippy))]
51
pub mod math;
52
pub mod mem;
53
src/math.rs
@@ -1,4 +1,6 @@
1
#[allow(dead_code)]
2
+#[allow(unused_imports)]
3
+#[allow(clippy::all)]
4
#[path = "../libm/src/math/mod.rs"]
5
mod libm;
6
0 commit comments