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:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user