/in/foo.cc: In function 'void read(_Tp&)':
/in/foo.cc:10:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(c11!='-'&&!isdigit(c11))c11=getchar();if(c11=='-')c11=getchar(),ob=1;
^~~~~
/in/foo.cc:10:49: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(c11!='-'&&!isdigit(c11))c11=getchar();if(c11=='-')c11=getchar(),ob=1;
^~
/in/foo.cc:11:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(isdigit(c11))x=x*10+c11-'0',c11=getchar();if(ob)x=-x;return ;
^~~~~
/in/foo.cc:11:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(isdigit(c11))x=x*10+c11-'0',c11=getchar();if(ob)x=-x;return ;
^~