1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

Complex decimators: fixed compiler warning

This commit is contained in:
f4exb 2020-08-07 08:00:35 +02:00
parent 45698b1896
commit db7ae9a0cd

View File

@ -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
}
}