From 405c8c47e9364628eda150f688664e63ae423ec3 Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Sun, 14 Oct 2012 12:57:16 +0100 Subject: [PATCH] Comment and include guard --- src/dsp/FFT.h | 2 ++ src/float_cast/float_cast.h | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/dsp/FFT.h b/src/dsp/FFT.h index b3b4480..842e00f 100644 --- a/src/dsp/FFT.h +++ b/src/dsp/FFT.h @@ -46,6 +46,8 @@ class FFTImpl; * 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). * + * Neither forward nor inverse transform is scaled. + * * This class is reentrant but not thread safe: use a separate * instance per thread, or use a mutex. */ diff --git a/src/float_cast/float_cast.h b/src/float_cast/float_cast.h index 1ba0e03..0aff010 100644 --- a/src/float_cast/float_cast.h +++ b/src/float_cast/float_cast.h @@ -1,3 +1,6 @@ +#ifndef ERIKD_FLOATCAST_H +#define ERIKD_FLOATCAST_H + /* ** Copyright (C) 2001 Erik de Castro Lopo ** @@ -69,5 +72,4 @@ #endif - - +#endif