From 8c0415c9b9b21e349bb75d48ece1d64a546f71cc Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Fri, 24 May 2019 12:19:10 -0400 Subject: [PATCH] Remove cross method from F32x4 Silencing the following rustc warning: warning: unused variable: `other` Followup to Pull Request #152. Instead of marking `other` unused (`_other`) we can remove the method entirely. --- simd/src/scalar/mod.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/simd/src/scalar/mod.rs b/simd/src/scalar/mod.rs index 553b1780..901d0af0 100644 --- a/simd/src/scalar/mod.rs +++ b/simd/src/scalar/mod.rs @@ -173,11 +173,6 @@ impl F32x4 { pub fn concat_wz_yx(self, other: F32x4) -> F32x4 { F32x4([self[3], self[2], other[1], other[0]]) } - - #[inline] - pub fn cross(&self, other: F32x4) -> F32x4 { - unimplemented!() - } } impl Index for F32x4 {