C++: Fix mixed tabs and spaces in non-test code

This commit is contained in:
Dave Bartolomeo
2018-11-07 11:32:17 -08:00
parent 0afbea968c
commit 5bf88f0f0a
17 changed files with 127 additions and 127 deletions

View File

@@ -1,16 +1,16 @@
int x1 = 0;
for (x1 = 0; x1 < 100; x1++) {
int x2 = 0;
for (x1 = 0; x1 < 300; x1++) {
int x2 = 0;
for (x1 = 0; x1 < 300; x1++) {
// this is most likely a typo
// the outer loop will exit immediately
}
}
}
for (x1 = 0; x1 < 100; x1++) {
if(x1 == 10 && condition) {
for (; x1 < 75; x1++) {
for (; x1 < 75; x1++) {
// this should be written as a while loop
}
}
}
}