Skip to content

Commit 4baffe4

Browse files
authored
Fix import lints
1 parent 5398d47 commit 4baffe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/numeric/impl_float_maths.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
#[cfg(feature = "std")]
44
use num_traits::Float;
5+
#[cfg(feature = "std")]
56
use std::borrow::Borrow;
67

78
use crate::imp_prelude::*;
8-
use crate::IntoNdProducer;
99

1010
#[cfg(feature = "std")]
1111
macro_rules! boolean_ops {
@@ -58,7 +58,7 @@ macro_rules! binary_ops_array {
5858
$($(#[$meta])*
5959
#[must_use = "method returns a new array and does not mutate the original value"]
6060
pub fn $fn_name<P>(&self, rhs: P) -> Array<A, D>
61-
where P: IntoNdProducer<Dim = D, Item: Borrow<$ty>> {
61+
where P: $crate::IntoNdProducer<Dim = D, Item: Borrow<$ty>> {
6262
$crate::Zip::from(self).and(rhs).map_collect(|a, b| A::$fn_use(*a, *b.borrow()))
6363
})+
6464
};

0 commit comments

Comments
 (0)