/in/foo.cc: In function 'void write(int)':
/in/foo.cc:10:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x<0)putchar('-'),x=-x;if(x>9)write(x/10);
^~
/in/foo.cc:10:27: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(x<0)putchar('-'),x=-x;if(x>9)write(x/10);
^~
/in/foo.cc: In function 'void writeln(int)':
/in/foo.cc:14:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(x<0)putchar('-'),x=-x;if(x>9)write(x/10);
^~
/in/foo.cc:14:27: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if(x<0)putchar('-'),x=-x;if(x>9)write(x/10);
^~