/in/foo.cc: In function 'int main()':
/in/foo.cc:24:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(pos>n)pos-=n;continue;
^~
/in/foo.cc:24:33: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(pos>n)pos-=n;continue;
^~~~~~~~
/in/foo.cc:29:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(pos<=0)pos+=n;continue;
^~
/in/foo.cc:29:34: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(pos<=0)pos+=n;continue;
^~~~~~~~
/in/foo.cc:37:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(pos<=0)pos+=n;continue;
^~
/in/foo.cc:37:34: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(pos<=0)pos+=n;continue;
^~~~~~~~
/in/foo.cc:42:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(pos>n)pos-=n;continue;
^~
/in/foo.cc:42:33: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(pos>n)pos-=n;continue;
^~~~~~~~