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:
Thomas Tsou
2013-11-15 16:32:54 -05:00
parent 8c33679fa5
commit 3f32ab5afa
8 changed files with 17 additions and 17 deletions

View File

@@ -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]);
}