Complex decimators: fixed compiler warning

This commit is contained in:
f4exb
2020-08-09 00:00:10 +02:00
parent 45698b1896
commit db7ae9a0cd
+2
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
}
}