From 0c29a040426ebd451cb54c21efb21cec7becf28c Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Thu, 24 May 2018 19:35:52 +0200 Subject: [PATCH] Fix compilation with the 'mint' feature. --- src/base/conversion.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/conversion.rs b/src/base/conversion.rs index b6a3d270..1b9d68e1 100644 --- a/src/base/conversion.rs +++ b/src/base/conversion.rs @@ -321,8 +321,8 @@ macro_rules! impl_from_into_mint_2D( #[cfg(feature = "mint")] impl_from_into_mint_2D!( (U2, U2) => ColumnMatrix2{x, y}[2]; - (U3, U2) => ColumnMatrix3x2{x, y}[3]; + (U2, U3) => ColumnMatrix2x3{x, y}[2]; (U3, U3) => ColumnMatrix3{x, y, z}[3]; - (U4, U3) => ColumnMatrix4x3{x, y, z}[4]; + (U3, U4) => ColumnMatrix3x4{x, y, z}[3]; (U4, U4) => ColumnMatrix4{x, y, z, w}[4]; );