/in/foo.cc: In function 'void bb(int, int)':
/in/foo.cc:17:6: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (b[i][j+1]==1) bb(i,j+1);if ((j-2)>=0)
^~
/in/foo.cc:17:34: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (b[i][j+1]==1) bb(i,j+1);if ((j-2)>=0)
^~
/in/foo.cc:22:6: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (b[i+1][j+1]==1) bb(i+1,j+1);if ((i-2)>=0)
^~
/in/foo.cc:22:38: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (b[i+1][j+1]==1) bb(i+1,j+1);if ((i-2)>=0)
^~