/in/foo.cc: In function 'void solve()':
/in/foo.cc:69:6: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(a[i][j] != L[x]) continue; if(used[x]) continue;
^~
/in/foo.cc:69:36: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(a[i][j] != L[x]) continue; if(used[x]) continue;
^~
/in/foo.cc:85:8: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(j == m && npr) continue; if(i == n && npd) continue;
^~
/in/foo.cc:85:36: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(j == m && npr) continue; if(i == n && npd) continue;
^~