fixed initialization order warning in src/effects/Paulstretch.cpp

This commit is contained in:
andheh 2018-02-15 15:16:30 +01:00 committed by James Crook
parent b71c24f15f
commit c6de7d6095
1 changed files with 1 additions and 1 deletions

View File

@ -419,8 +419,8 @@ PaulStretch::PaulStretch(float rap_, size_t in_bufsize_, float samplerate_ )
, in_pool { poolsize, true }
, remained_samples { 0.0 }
, fft_smps { poolsize, true }
, fft_s { poolsize, true }
, fft_c { poolsize, true }
, fft_s { poolsize, true }
, fft_freq { poolsize, true }
, fft_tmp { poolsize }
{