/in/foo.cc: In function 'int getint()':
/in/foo.cc:24:1: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while((c<'0' || c>'9') && c!='-') c=getchar(); if(c=='-') q=1,c=getchar();
^~~~~
/in/foo.cc:24:48: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while((c<'0' || c>'9') && c!='-') c=getchar(); if(c=='-') q=1,c=getchar();
^~
/in/foo.cc:25:1: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while (c>='0' && c<='9') w=w*10+c-'0', c=getchar(); return q ? -w : w;
^~~~~
/in/foo.cc:25:53: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while (c>='0' && c<='9') w=w*10+c-'0', c=getchar(); return q ? -w : w;
^~~~~~