From 7cec7175dccc294d0d2af071c04ec67f76dccbf0 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 26 Sep 2009 00:38:19 +0200 Subject: [PATCH] src/spectral/fft.h: improve fftw types comments --- src/spectral/fft.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/spectral/fft.h b/src/spectral/fft.h index f067b20b..ae63c1c7 100644 --- a/src/spectral/fft.h +++ b/src/spectral/fft.h @@ -32,16 +32,18 @@ #ifdef HAVE_COMPLEX_H #if HAVE_FFTW3F +/** fft data type with complex.h and fftw3f */ #define FFTW_TYPE fftwf_complex #else +/** fft data type with complex.h and fftw3 */ #define FFTW_TYPE fftw_complex #endif #else #if HAVE_FFTW3F -/** fft data type */ +/** fft data type without complex.h and with fftw3f */ #define FFTW_TYPE float #else -/** fft data type */ +/** fft data type without complex.h and with fftw */ #define FFTW_TYPE double #endif #endif -- 2.26.2