diff options
| author | Crozet Sébastien <developer@crozet.re> | 2020-09-28 10:04:56 +0200 |
|---|---|---|
| committer | Crozet Sébastien <developer@crozet.re> | 2020-09-28 15:27:25 +0200 |
| commit | c031f96ac548645932c5605bfc17869618e9212b (patch) | |
| tree | 569cdd0505e78932bcfe35526613e66dab18a947 /src/geometry | |
| parent | 52bbcc79fe1989f391e17b8c240a886bd8529d1f (diff) | |
| download | rapier-c031f96ac548645932c5605bfc17869618e9212b.tar.gz rapier-c031f96ac548645932c5605bfc17869618e9212b.tar.bz2 rapier-c031f96ac548645932c5605bfc17869618e9212b.zip | |
Fix compilation when parallelism is not enabled.
Diffstat (limited to 'src/geometry')
| -rw-r--r-- | src/geometry/waabb.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/geometry/waabb.rs b/src/geometry/waabb.rs index 4981373..1706370 100644 --- a/src/geometry/waabb.rs +++ b/src/geometry/waabb.rs @@ -1,7 +1,5 @@ use crate::geometry::Ray; -#[cfg(feature = "serde-serialize")] -use crate::math::DIM; -use crate::math::{Point, Vector, SIMD_WIDTH}; +use crate::math::{Point, Vector, DIM, SIMD_WIDTH}; use crate::utils; use ncollide::bounding_volume::AABB; use num::{One, Zero}; |
