mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 05:06:44 +01:00
9 lines
238 B
C
9 lines
238 B
C
#include "cplx_fft_private.h"
|
|
#include "../commons_private.h"
|
|
|
|
__always_inline void my_asserts() {
|
|
STATIC_ASSERT(sizeof(FFT_FUNCTION)==8);
|
|
STATIC_ASSERT(sizeof(CPLX_FFT_PRECOMP)==40);
|
|
STATIC_ASSERT(sizeof(CPLX_IFFT_PRECOMP)==40);
|
|
}
|