explicit copy

This commit is contained in:
maikklein 2013-06-29 02:26:26 +02:00
parent 547ac400fd
commit c36cb6e555

View file

@ -215,8 +215,8 @@ macro_rules! impl_approx(
#[inline] #[inline]
pub fn approx_eq_eps(&self, other: &$Self<T>, epsilon: &T) -> bool { pub fn approx_eq_eps(&self, other: &$Self<T>, epsilon: &T) -> bool {
true
//self.zip(other, |a, b| a.approx_eq_eps(b, epsilon)).all(|&x| x) self.zip(other, |a, b| a.approx_eq_eps(b, epsilon)).all(|&x| x)
} }
} }
) )