anthonix / ffts

The Fastest Fourier Transform in the South
http://anthonix.com/ffts
Other
536 stars 213 forks source link

wrong variable declaration #86

Closed protektwar closed 3 years ago

protektwar commented 3 years ago

Error: In function ‘ffts_generate_cosine_sine_pow2_32f’: ../ffts/src/ffts_trig.c:884:11: error: unknown type name ‘double_t’ 884 | const double_t *FFTS_RESTRICT hs; | ^~~~

Solved: ffts_trig.c line 884 change const double_t *FFTS_RESTRICT hs; to const ffts_double_t *FFTS_RESTRICT hs;