/in/foo.cc: In function 'int main()':
/in/foo.cc:9:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (i = 1; i<q ; i++)cout << " "; cout << "*";
^~~
/in/foo.cc:9:38: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for (i = 1; i<q ; i++)cout << " "; cout << "*";
^~~~
/in/foo.cc:10:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (j = 2*q-1; j <= 2*n-3; j++)cout << " "; if (q!=n)cout << "*";
^~~
/in/foo.cc:10:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for (j = 2*q-1; j <= 2*n-3; j++)cout << " "; if (q!=n)cout << "*";
^~
/in/foo.cc:15:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (i = q; i < n-1; i++)cout << " "; cout << "*";
^~~
/in/foo.cc:15:41: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for (i = q; i < n-1; i++)cout << " "; cout << "*";
^~~~
/in/foo.cc:16:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for (j = 1; j <= 2 * q - 1; j++)cout << " "; cout << "*";
^~~
/in/foo.cc:16:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for (j = 1; j <= 2 * q - 1; j++)cout << " "; cout << "*";
^~~~