/in/foo.cc: In function 'void print()':
/in/foo.cc:19:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int j=1;j<=7;j++)cout<<map[i][j]<<" ";cout<<endl;
^~~
/in/foo.cc:19:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int j=1;j<=7;j++)cout<<map[i][j]<<" ";cout<<endl;
^~~~
/in/foo.cc:18:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=5;i++,cout<<endl)
^~~
/in/foo.cc:19:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int j=1;j<=7;j++)cout<<map[i][j]<<" ";cout<<endl;
^~~~