1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-20 21:21:25 +01:00

Fix warnings for out-of-order initializers, with in-class member initializers

This commit is contained in:
Paul Licameli
2016-02-26 14:43:33 -05:00
parent 1398d1a953
commit dfc84d030c
9 changed files with 51 additions and 99 deletions

View File

@@ -139,12 +139,12 @@ public:
#ifdef EXPERIMENTAL_USE_REALFFTF
// Variables used for computing the spectrum
mutable FFTParam *hFFT;
mutable float *window;
mutable FFTParam *hFFT{};
mutable float *window{};
// Two other windows for computing reassigned spectrogram
mutable float *tWindow; // Window times time parameter
mutable float *dWindow; // Derivative of window
mutable float *tWindow{}; // Window times time parameter
mutable float *dWindow{}; // Derivative of window
#endif
};