/in/foo.cc: In function 'int have_two(int)':
/in/foo.cc:10:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=x;now[i] >= 2 && i<= 14;i++);
^~~
/in/foo.cc:11:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return i - x;
^~~~~~
/in/foo.cc: In function 'int have_three(int)':
/in/foo.cc:16:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=x;now[i] >= 3 && i <= 14;i++);
^~~
/in/foo.cc:17:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return i - x;
^~~~~~
/in/foo.cc: In function 'void Dfs(int, int)':
/in/foo.cc:79:10: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int d=2;d;d--)
^~~
/in/foo.cc:89:14: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(int j=2;j<=14;j++)
^~~