Skip to content

Commit

Permalink
Merge pull request #2 from newpavlov/patch-2
Browse files Browse the repository at this point in the history
Fix import
  • Loading branch information
dhardy committed Aug 23, 2019
2 parents edabfb9 + 8ff49de commit 3d051d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/base/ops.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use num::{One, Signed, Zero};
use std::cmp::{PartialOrd, Ordering};
use std::iter;
use std::ops::{
use core::cmp::{PartialOrd, Ordering};
use core::iter;
use core::ops::{
Add, AddAssign, Div, DivAssign, Index, IndexMut, Mul, MulAssign, Neg, Sub, SubAssign,
};

Expand Down Expand Up @@ -965,4 +965,4 @@ impl<N: Scalar, R: Dim, C: Dim, S: Storage<N, R, C>> Matrix<N, R, C, S> {
where N: PartialOrd + Signed {
self.xcmp(|e| e, Ordering::Less)
}
}
}

0 comments on commit 3d051d6

Please sign in to comment.