/in/foo.cc: In function 'void dfs(char*, int, int, int)':
/in/foo.cc:24:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(s[x]=='0'&&lens-x>1) return;s2[len]='.';
^~
/in/foo.cc:24:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(s[x]=='0'&&lens-x>1) return;s2[len]='.';
^~
/in/foo.cc:32:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(sum>255)break;s2[len]='.';
^~
/in/foo.cc:32:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(sum>255)break;s2[len]='.';
^~
/in/foo.cc: In function 'void right(int)':
/in/foo.cc:42:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=len-1,j=len;i>=0;i--,j++)go[j]=go[i];go[j]='\0';
^~~
/in/foo.cc:42:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=len-1,j=len;i>=0;i--,j++)go[j]=go[i];go[j]='\0';
^~
/in/foo.cc:44:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=len-2,j=len;i>=0;i--,j++)go[j]=go[i];go[j]='\0';
^~~
/in/foo.cc:44:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(i=len-2,j=len;i>=0;i--,j++)go[j]=go[i];go[j]='\0';
^~