Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Apr 28, 2022
1 parent adb3820 commit c9bf6aa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Cargo.toml
Expand Up @@ -37,7 +37,6 @@ cuda = [ "cust_core", "simba/cuda" ]
# Conversion
convert-mint = [ "mint" ]
convert-bytemuck = [ "bytemuck" ]
convert-glam013 = [ "glam013" ]
convert-glam014 = [ "glam014" ]
convert-glam015 = [ "glam015" ]
convert-glam016 = [ "glam016" ]
Expand Down Expand Up @@ -88,7 +87,6 @@ pest_derive = { version = "2", optional = true }
bytemuck = { version = "1.5", optional = true }
matrixcompare-core = { version = "0.1", optional = true }
proptest = { version = "1", optional = true, default-features = false, features = ["std"] }
glam013 = { package = "glam", version = "0.13", optional = true }
glam014 = { package = "glam", version = "0.14", optional = true }
glam015 = { package = "glam", version = "0.15", optional = true }
glam016 = { package = "glam", version = "0.16", optional = true }
Expand Down
1 change: 0 additions & 1 deletion nalgebra-glm/Cargo.toml
Expand Up @@ -26,7 +26,6 @@ cuda = [ "nalgebra/cuda" ]
# Conversion
convert-mint = [ "nalgebra/mint" ]
convert-bytemuck = [ "nalgebra/bytemuck" ]
convert-glam013 = [ "nalgebra/glam013" ]
convert-glam014 = [ "nalgebra/glam014" ]
convert-glam015 = [ "nalgebra/glam015" ]
convert-glam016 = [ "nalgebra/glam016" ]
Expand Down
2 changes: 1 addition & 1 deletion src/third_party/glam/common/glam_isometry.rs
@@ -1,5 +1,5 @@
use super::glam::{DMat3, DMat4, DQuat, DVec2, DVec3, Mat3, Mat4, Quat, Vec2, Vec3};
use crate::{Isometry2, Isometry3, Matrix3, Matrix4, Translation3, UnitQuaternion, Vector2};
use crate::{Isometry2, Isometry3, Matrix3, Matrix4, Translation3, UnitQuaternion};
use std::convert::TryFrom;

impl From<Isometry2<f32>> for Mat3 {
Expand Down
2 changes: 1 addition & 1 deletion src/third_party/glam/common/glam_unit_complex.rs
@@ -1,4 +1,4 @@
use super::glam::{DMat2, DQuat, DVec3, Mat2, Quat, Vec3};
use super::glam::{DMat2, Mat2};
use crate::{Complex, UnitComplex};

impl From<UnitComplex<f32>> for Mat2 {
Expand Down

0 comments on commit c9bf6aa

Please sign in to comment.