mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-13 18:36:08 +00:00
Transceiver52M: Enable all warnings and resolve
Mainly basic signed vs unsigned comparisons and intializer ordering. Signed-off-by: Thomas Tsou <tom@tsou.cc>
This commit is contained in:
@@ -149,7 +149,7 @@ int RadioInterface::unRadioifyVector(float *floatVector,
|
||||
return -1;
|
||||
}
|
||||
|
||||
for (int i = 0; i < newVector.size(); i++) {
|
||||
for (size_t i = 0; i < newVector.size(); i++) {
|
||||
*itr++ = Complex<float>(floatVector[2 * i + 0],
|
||||
floatVector[2 * i + 1]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user