Complex decimators: fixed compiler warning

pull/593/head
f4exb 2020-08-07 08:00:35 +02:00
rodzic 45698b1896
commit db7ae9a0cd
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -46,6 +46,8 @@ bool DecimatorC::decimate(Complex c, Complex& cd)
return decimate32(c, cd);
} else if (m_log2Decim == 6) {
return decimate64(c, cd);
} else {
return true; // no decimation
}
}