Skip to content

Commit

Permalink
Fix redundant import errors in nalgebra-glm
Browse files Browse the repository at this point in the history
More fallout from rust-lang/rust#121708
Should make CI green again
  • Loading branch information
yotamofek committed Mar 20, 2024
1 parent 8c6f14f commit cf44429
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion nalgebra-glm/src/ext/quaternion_common.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use na::{self, Unit};
use na::Unit;

use crate::aliases::Qua;
use crate::RealNumber;
Expand Down
1 change: 0 additions & 1 deletion nalgebra-glm/src/traits.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use approx::AbsDiffEq;
use num::{Bounded, Signed};

use core::cmp::PartialOrd;
use na::Scalar;
use simba::scalar::{ClosedAdd, ClosedMul, ClosedSub, RealField};

Expand Down

0 comments on commit cf44429

Please sign in to comment.