/in/foo.cc: In function 'void print(int)':
/in/foo.cc:14:2: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(tmp) tmp/=10,++cnt; ttmp+=cnt;
^~~~~
/in/foo.cc:14:28: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(tmp) tmp/=10,++cnt; ttmp+=cnt;
^~~~
/in/foo.cc:15:2: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while(cnt) a[t+cnt]=k%10+'0',k/=10,--cnt; t=ttmp;
^~~~~
/in/foo.cc:15:44: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while(cnt) a[t+cnt]=k%10+'0',k/=10,--cnt; t=ttmp;
^