src/spectral/fft.h: improve fftw types comments
authorPaul Brossier <piem@piem.org>
Fri, 25 Sep 2009 22:38:19 +0000 (00:38 +0200)
committerPaul Brossier <piem@piem.org>
Fri, 25 Sep 2009 22:38:19 +0000 (00:38 +0200)
src/spectral/fft.h

index f067b20b4940b250be110e8b4ffa841d5bad2be0..ae63c1c7e60ec21ad75bc524a327936b49f21c48 100644 (file)
 
 #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