fix few warnings reported by clang

This commit is contained in:
Thomas Capricelli
2011-07-07 22:19:43 +02:00
parent a99ea69b32
commit 3cb088c39f
4 changed files with 11 additions and 1 deletions

View File

@@ -294,11 +294,19 @@ struct kissfft_impl
inline
void fwd2( Complex * dst,const Complex *src,int n0,int n1)
{
EIGEN_UNUSED_VARIABLE(dst);
EIGEN_UNUSED_VARIABLE(src);
EIGEN_UNUSED_VARIABLE(n0);
EIGEN_UNUSED_VARIABLE(n1);
}
inline
void inv2( Complex * dst,const Complex *src,int n0,int n1)
{
EIGEN_UNUSED_VARIABLE(dst);
EIGEN_UNUSED_VARIABLE(src);
EIGEN_UNUSED_VARIABLE(n0);
EIGEN_UNUSED_VARIABLE(n1);
}
// real-to-complex forward FFT