fix few warnings reported by clang

This commit is contained in:
Thomas Capricelli
2011-07-07 22:20:04 +02:00
parent c52268c649
commit 08074843ac
3 changed files with 10 additions and 0 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