/in/foo.cc: In function 'bool A(int)':
/in/foo.cc:25:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<n;++i) if(k1[i]!=b[i]) o1=0;for(int i=0;i<n;++i) if(k2[i]!=c[i]) o1=0;
^~~
/in/foo.cc:25:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=0;i<n;++i) if(k1[i]!=b[i]) o1=0;for(int i=0;i<n;++i) if(k2[i]!=c[i]) o1=0;
^~~
/in/foo.cc:26:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<n;++i) if(k2[i]!=b[i]) o2=0;for(int i=0;i<n;++i) if(k1[i]!=c[i]) o2=0;
^~~
/in/foo.cc:26:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=0;i<n;++i) if(k2[i]!=b[i]) o2=0;for(int i=0;i<n;++i) if(k1[i]!=c[i]) o2=0;
^~~
/in/foo.cc: In function 'bool B(int)':
/in/foo.cc:42:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i(0);i<n;++i) if(k1[i]!=a[i]) o1=0;for(int i(0);i<n;++i) if(k2[i]!=c[i]) o1=0;
^~~
/in/foo.cc:42:45: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i(0);i<n;++i) if(k1[i]!=a[i]) o1=0;for(int i(0);i<n;++i) if(k2[i]!=c[i]) o1=0;
^~~
/in/foo.cc:43:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i(0);i<n;++i) if(k2[i]!=a[i]) o2=0;for(int i(0);i<n;++i) if(k1[i]!=c[i]) o2=0;
^~~
/in/foo.cc:43:45: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i(0);i<n;++i) if(k2[i]!=a[i]) o2=0;for(int i(0);i<n;++i) if(k1[i]!=c[i]) o2=0;
^~~
/in/foo.cc: In function 'bool C(int)':
/in/foo.cc:59:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i(0);i<n;++i) if(k1[i]!=b[i]) o1=0;for(int i(0);i<n;++i) if(k2[i]!=a[i]) o1=0;
^~~
/in/foo.cc:59:45: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i(0);i<n;++i) if(k1[i]!=b[i]) o1=0;for(int i(0);i<n;++i) if(k2[i]!=a[i]) o1=0;
^~~
/in/foo.cc:60:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i(0);i<n;++i) if(k2[i]!=b[i]) o2=0;for(int i(0);i<n;++i) if(k1[i]!=a[i]) o2=0;
^~~
/in/foo.cc:60:45: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i(0);i<n;++i) if(k2[i]!=b[i]) o2=0;for(int i(0);i<n;++i) if(k1[i]!=a[i]) o2=0;
^~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:78:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=n-1;i>=0;--i) cout<<(char)(b[i]-1+'a');return 0;
^~~
/in/foo.cc:78:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=n-1;i>=0;--i) cout<<(char)(b[i]-1+'a');return 0;
^~~~~~
/in/foo.cc:81:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=n-1;i>=0;--i) cout<<(char)(b[i]-1+'a');return 0;
^~~
/in/foo.cc:81:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=n-1;i>=0;--i) cout<<(char)(b[i]-1+'a');return 0;
^~~~~~
/in/foo.cc:84:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=n-1;i>=0;--i) cout<<(char)(a[i]-1+'a');return 0;
^~~
/in/foo.cc:84:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int i=n-1;i>=0;--i) cout<<(char)(a[i]-1+'a');return 0;
^~~~~~