From c6de7d60955dfbb715c5e4b5ab15040da7528527 Mon Sep 17 00:00:00 2001 From: andheh <36114788+andheh@users.noreply.github.com> Date: Thu, 15 Feb 2018 15:16:30 +0100 Subject: [PATCH] fixed initialization order warning in src/effects/Paulstretch.cpp --- src/effects/Paulstretch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/Paulstretch.cpp b/src/effects/Paulstretch.cpp index 7b5ca5851..14e075680 100644 --- a/src/effects/Paulstretch.cpp +++ b/src/effects/Paulstretch.cpp @@ -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 } {