From 78fa293e7b1f77b5826155063163a0841d2d5a83 Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Sat, 30 Dec 2017 13:48:31 +0100 Subject: [PATCH] Remove duplicate trait bounds. --- src/rotation.rs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/rotation.rs b/src/rotation.rs index baab581..e25af1b 100644 --- a/src/rotation.rs +++ b/src/rotation.rs @@ -330,16 +330,7 @@ impl TypedRotation3D where T: Copy { } impl TypedRotation3D -where T: Copy + Clone + - Add + - Sub + - Mul + - Div + - Neg + - ApproxEq + - PartialOrd + - Float + - One + Zero +where T: Float + ApproxEq { /// Creates the identity rotation. #[inline]