/in/foo.cc: In function 'int pdhw(int)':
/in/foo.cc:8:1: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=1;i<=n/2;i++)
^~~
/in/foo.cc:11:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return 1;
^~~~~~
/in/foo.cc: In function 'int jf(int)':
/in/foo.cc:21:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if(c[n+1]!=0)
^~
/in/foo.cc:23:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
for(int i=n;i>=1;i--){
^~~