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.
This commit is contained in:
Luis de Bethencourt 2019-05-24 12:19:10 -04:00
parent 8c4f05ce39
commit 8c0415c9b9
1 changed files with 0 additions and 5 deletions

View File

@ -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<usize> for F32x4 {