/in/foo.cc: In function 'int getint()':
/in/foo.cc:24:5: 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:52: 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:5: 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:57: 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;
                                                         ^~~~~~