From ff6a40cc88630cafa98fe0067219b72834766565 Mon Sep 17 00:00:00 2001 From: William Rieger Date: Fri, 4 Sep 2015 17:48:31 -0400 Subject: [PATCH] Remove reduntant Num trait from an impl. --- src/complex.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/complex.rs b/src/complex.rs index ab5e86f..000e478 100644 --- a/src/complex.rs +++ b/src/complex.rs @@ -81,9 +81,6 @@ impl Complex { pub fn norm(&self) -> T { self.re.clone().hypot(self.im.clone()) } -} - -impl Complex { /// Calculate the principal Arg of self. #[inline] pub fn arg(&self) -> T {