/in/foo.cc: In function 'void read(int&)':
/in/foo.cc:9:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(;c>='0'&&c<='9';c=getchar()) a=(a<<1)+(a<<3)+c-'0'; a=f?a:-a;
^~~
/in/foo.cc:9:58: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(;c>='0'&&c<='9';c=getchar()) a=(a<<1)+(a<<3)+c-'0'; a=f?a:-a;
^
/in/foo.cc: In function 'void print(int)':
/in/foo.cc:12:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(!x) putchar('0'); if(x<0) putchar('-'),x=-x; ri qr=0;
^~
/in/foo.cc:12:23: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(!x) putchar('0'); if(x<0) putchar('-'),x=-x; ri qr=0;
^~