/in/foo.cc: In function 'int main()':
/in/foo.cc:19:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==0) cout<<"Mon:"<<result<<endl;break;
^~
/in/foo.cc:19:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==0) cout<<"Mon:"<<result<<endl;break;
^~~~~
/in/foo.cc:20:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==1) cout<<"Tue:"<<result<<endl;break;
^~
/in/foo.cc:20:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==1) cout<<"Tue:"<<result<<endl;break;
^~~~~
/in/foo.cc:21:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==2) cout<<"Wed:"<<result<<endl;break;
^~
/in/foo.cc:21:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==2) cout<<"Wed:"<<result<<endl;break;
^~~~~
/in/foo.cc:22:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==3) cout<<"Thu:"<<result<<endl;break;
^~
/in/foo.cc:22:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==3) cout<<"Thu:"<<result<<endl;break;
^~~~~
/in/foo.cc:23:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==4) cout<<"Fri:"<<result<<endl;break;
^~
/in/foo.cc:23:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==4) cout<<"Fri:"<<result<<endl;break;
^~~~~
/in/foo.cc:24:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==5) cout<<"Sat:"<<result<<endl;break;
^~
/in/foo.cc:24:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==5) cout<<"Sat:"<<result<<endl;break;
^~~~~
/in/foo.cc:25:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(i==6) cout<<"Sun:"<<result<<endl;break;
^~
/in/foo.cc:25:39: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(i==6) cout<<"Sun:"<<result<<endl;break;
^~~~~