/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;
^~~~~~