/in/foo.cc: In function 'long long unsigned int read()':
/in/foo.cc:8:5: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while (c=getchar(),c<'0'||c>'9') if (c=='-') d=-1;f=f*10+c-48;
^~~~~
/in/foo.cc:8:55: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while (c=getchar(),c<'0'||c>'9') if (c=='-') d=-1;f=f*10+c-48;
^
/in/foo.cc: In function 'void write(long long unsigned int)':
/in/foo.cc:15:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x>9)write(x/10);putchar(x%10+48);
^~
/in/foo.cc:15:24: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(x>9)write(x/10);putchar(x%10+48);
^~~~~~~