/in/foo.cc: In function 'int main()':
/in/foo.cc:7:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(a>0) n++;if(a>0) sum1+=a;
^~
/in/foo.cc:7:15: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(a>0) n++;if(a>0) sum1+=a;
^~
/in/foo.cc:8:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(a<0) m++;if(a<0) sum2+=a;
^~
/in/foo.cc:8:15: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(a<0) m++;if(a<0) sum2+=a;
^~