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