Merge pull request #47 from JulienMaille/patch-1

Fix conversion from 'double' to 'float' warning closes
This commit is contained in:
mborgerding 2020-06-09 08:50:57 -04:00 committed by GitHub
commit c524b0b0e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,7 @@ struct kiss_fft_state{
#else
# define KISS_FFT_COS(phase) (kiss_fft_scalar) cos(phase)
# define KISS_FFT_SIN(phase) (kiss_fft_scalar) sin(phase)
# define HALF_OF(x) ((x)*.5)
# define HALF_OF(x) ((x)*((kiss_fft_scalar).5))
#endif
#define kf_cexp(x,phase) \