/in/foo.cc: In function 'void sdf(T&)':
/in/foo.cc:13:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(c=gc(),47<c&&c<58)x=(x<<1)+(x<<3)+(c^48);x*=y;
^~~~~
/in/foo.cc:13:52: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(c=gc(),47<c&&c<58)x=(x<<1)+(x<<3)+(c^48);x*=y;
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:6:19: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#define fp(i,a,b) for(re i=a,I=b;i<=I;++i)
^
/in/foo.cc:67:9: note: in expansion of macro 'fp'
fp(i,1,n)da[i]=i;sort(da+1,da+n+1,comp);
^~
/in/foo.cc:67:26: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
fp(i,1,n)da[i]=i;sort(da+1,da+n+1,comp);
^~~~