/in/foo.cc: In function 'int main()':
/in/foo.cc:22:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i-d<0)x1=0;if(j-d<0)y1=0;
^~
/in/foo.cc:22:17: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i-d<0)x1=0;if(j-d<0)y1=0;
^~
/in/foo.cc:23:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i+d>128)x2=128;if(j+d>128)y2=128;
^~
/in/foo.cc:23:21: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i+d>128)x2=128;if(j+d>128)y2=128;
^~