Merge pull request #110 from wrieger93/remove_reduntant_trait

Remove reduntant Num trait from an impl.
This commit is contained in:
Alex Crichton 2015-09-04 15:20:43 -07:00
commit 85b9ac58bf
1 changed files with 0 additions and 3 deletions

View File

@ -81,9 +81,6 @@ impl<T: Clone + Float> Complex<T> {
pub fn norm(&self) -> T {
self.re.clone().hypot(self.im.clone())
}
}
impl<T: Clone + Float + Num> Complex<T> {
/// Calculate the principal Arg of self.
#[inline]
pub fn arg(&self) -> T {