From 0822855fd3436d870cf583a9ac09548da1ee17d3 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sun, 21 Jun 2015 16:00:28 -0400 Subject: [PATCH] Eliminate a couple of inlines --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 3014118..a72a774 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,7 +51,6 @@ impl<'l> AsMutComplex<'l> for &'l mut Vec { /// Perform the Fourier transform. /// /// The number of points should be a power of two. -#[inline(always)] pub fn forward<'l, T: AsMutComplex<'l>>(data: T) { let data = data.as_mut_complex(); @@ -67,7 +66,6 @@ pub fn forward<'l, T: AsMutComplex<'l>>(data: T) { /// Perform the inverse Fourier transform. /// /// The number of points should be a power of two. -#[inline(always)] pub fn inverse<'l, T: AsMutComplex<'l>>(data: T, scaling: bool) { let data = data.as_mut_complex();