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 6e57b14 commit 5091076Copy full SHA for 5091076
src/lib.rs
@@ -30,7 +30,7 @@
30
#![warn(clippy::missing_const_for_fn, clippy::approx_constant, clippy::all)]
31
32
pub mod errors;
33
-pub mod float_types;
+pub mod math_ndsp;
34
pub mod io;
35
pub mod mesh;
36
pub mod nurbs;
@@ -51,11 +51,5 @@ pub mod wasm;
51
))]
52
compile_error!("Either 'delaunay' or 'earcut' feature must be specified, but not both");
53
54
-#[cfg(any(
55
- all(feature = "f64", feature = "f32"),
56
- not(any(feature = "f64", feature = "f32"))
57
-))]
58
-compile_error!("Either 'f64' or 'f32' feature must be specified, but not both");
59
-
60
#[cfg(test)]
61
mod tests;
0 commit comments