Fix some warnings

This commit is contained in:
Crozet Sébastien
2021-04-29 10:33:07 +02:00
parent 705876f5e5
commit 3810466326
2 changed files with 26 additions and 36 deletions

View File

@@ -1,11 +1,13 @@
use crate::data::{BundleSet, ComponentSet};
use crate::data::ComponentSet;
#[cfg(feature = "parallel")]
use crate::dynamics::BodyPair;
use crate::dynamics::{IslandManager, RigidBodyIds, RigidBodyType};
use crate::dynamics::{IslandManager, RigidBodyIds};
use crate::dynamics::{JointGraphEdge, JointIndex};
use crate::geometry::{ContactManifold, ContactManifoldIndex};
#[cfg(feature = "simd-is-enabled")]
use {
crate::data::BundleSet,
crate::dynamics::RigidBodyType,
crate::math::{SIMD_LAST_INDEX, SIMD_WIDTH},
vec_map::VecMap,
};