Reordered variables in class to fix -Werror=reorder

pull/68/head
blaz-r 2021-09-13 08:59:30 +02:00
rodzic 5eaad08339
commit 3fce8acb88
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -435,13 +435,13 @@ private:
#endif #endif
/* Variables */ /* Variables */
uint_fast16_t _samples = 0;
#ifdef FFT_SPEED_OVER_PRECISION #ifdef FFT_SPEED_OVER_PRECISION
T _oneOverSamples = 0.0; T _oneOverSamples = 0.0;
#endif #endif
T _samplingFrequency = 0;
T *_vReal = nullptr; T *_vReal = nullptr;
T *_vImag = nullptr; T *_vImag = nullptr;
uint_fast16_t _samples = 0;
T _samplingFrequency = 0;
T *_windowWeighingFactors = nullptr; T *_windowWeighingFactors = nullptr;
FFTWindow _weighingFactorsFFTWindow; FFTWindow _weighingFactorsFFTWindow;
bool _weighingFactorsWithCompensation = false; bool _weighingFactorsWithCompensation = false;