Merge pull request #59 from drzony/reordering-fix

Fixed compilation with -Wextra
pull/68/head^2
Enrique Condes 2021-11-27 10:57:18 -06:00 zatwierdzone przez GitHub
commit e7357ccbaf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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