Comment and include guard

This commit is contained in:
Chris Cannam
2012-10-14 12:57:16 +01:00
parent d66fd7dbe1
commit 405c8c47e9
2 changed files with 6 additions and 2 deletions

View File

@@ -46,6 +46,8 @@ class FFTImpl;
* size/2+1 real+imaginary pairs. So, the array elements at indices 1 * size/2+1 real+imaginary pairs. So, the array elements at indices 1
* and size+1 will always be zero (since the signal is real). * and size+1 will always be zero (since the signal is real).
* *
* Neither forward nor inverse transform is scaled.
*
* This class is reentrant but not thread safe: use a separate * This class is reentrant but not thread safe: use a separate
* instance per thread, or use a mutex. * instance per thread, or use a mutex.
*/ */

View File

@@ -1,3 +1,6 @@
#ifndef ERIKD_FLOATCAST_H
#define ERIKD_FLOATCAST_H
/* /*
** Copyright (C) 2001 Erik de Castro Lopo <erikd AT mega-nerd DOT com> ** Copyright (C) 2001 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
** **
@@ -69,5 +72,4 @@
#endif #endif
#endif