No... it won't...
Thats a really 'hard to see' identing style
I think my style is much better
---
Look at these two examples
Code:
if(bla == blah)
{
for(int a = 0; a < max; a++)
{
for(int b = 0; a < max2; b++)
{
if(something == something)
{
DoThis();
} else
{
if(anotherthing == something)
{
DoThat();
} else
{
DoTheOtherThing();
}
}
//Add a thing
AddThing(thing);
}
ResetThis(value)
}
} else
{
EscapeSomeData('@', 127);
}
Code:
if(bla == blah)
{
for(int a = 0; a < max; a++)
{
for(int b = 0; a < max2; b++)
{
if(something == something)
{
DoThis();
} else
{
if(anotherthing == something)
{
DoThat();
} else
{
DoTheOtherThing();
}
}
//Add a thing
AddThing(thing);
}
ResetThis(value)
}
} else
{
EscapeSomeData('@', 127);
}
You can immidiatly see what piece of code is in what loop with the first style.
You can't really see with the seconds style
__________________