/in/foo.cc: In function 'bool FINIALCHECK()':
/in/foo.cc:56:6: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int j=1;j<=n+1;j++)
^~~
/in/foo.cc:63:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
if (k!=lh[i].size()) return 0;
^~
/in/foo.cc:63:8: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (k!=lh[i].size()) return 0;
~^~~~~~~~~~~~~~
/in/foo.cc:68:6: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int j=1;j<=m+1;j++)
^~~
/in/foo.cc:75:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
if (k!=hh[i].size()) return 0;
^~
/in/foo.cc:75:8: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (k!=hh[i].size()) return 0;
~^~~~~~~~~~~~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:113:6: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int j=1;j<=m;j++)
^~~
/in/foo.cc:116:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
cout<<endl;
^~~~