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