trivial code style cleanup round 2

This commit is contained in:
Daniel Agar
2015-03-27 19:08:44 -04:00
parent 5cc1a5dfda
commit 8aae66b893
56 changed files with 132 additions and 104 deletions
+3 -3
View File
@@ -51,7 +51,7 @@ bool __EXPORT equal(float a, float b, float epsilon)
printf("not equal ->\n\ta: %12.8f\n\tb: %12.8f\n", double(a), double(b));
return false;
} else return true;
} else { return true; }
}
void __EXPORT float2SigExp(
@@ -84,10 +84,10 @@ void __EXPORT float2SigExp(
// cheap power since it is integer
if (exp > 0) {
for (int i = 0; i < abs(exp); i++) sig /= 10;
for (int i = 0; i < abs(exp); i++) { sig /= 10; }
} else {
for (int i = 0; i < abs(exp); i++) sig *= 10;
for (int i = 0; i < abs(exp); i++) { sig *= 10; }
}
}