I have this snippet of code:
for (f = 0; f < 32; f++)
{
ch = user_id.GetPart(0, 1);
if (ch != "-")
{ the_id = the_id + ch; }
}
And it keeps telling me that there is a "wrong indentation of if", no matter how I indent the "if" statement.
How can I possibly indent the "if" statement to make Xcode stop telling me that the "if" is badly indented?
Damn, these new limitations of composition are very strict!!!