unimportant small fix

This commit is contained in:
Thomas Capricelli 2010-01-04 23:25:00 +01:00
parent 57275b2b8c
commit fd19e0a9ea

View File

@ -213,7 +213,7 @@ class FFT
int nfft = src.size();
int nout = HasFlag(HalfSpectrum) ? ((nfft>>1)+1) : nfft;
dst.derived().resize( nout );
inv( &dst[0],&src[0],src.size() );
inv( &dst[0],&src[0], nfft);
}
template <typename _Output>