Removed additional into_owned call

This commit is contained in:
Yuri Edward 2021-10-24 21:58:05 +02:00
parent 54b8a5b900
commit 25dba52197
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ where
) -> Self { ) -> Self {
let t = m.fixed_slice::<D, 1>(0, D).into_owned(); let t = m.fixed_slice::<D, 1>(0, D).into_owned();
Self { Self {
vector: crate::convert_unchecked(t.into_owned()), vector: crate::convert_unchecked(t),
} }
} }
} }