/in/foo.cc: In function 'bool isPrime(int)':
/in/foo.cc:11:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=2;i<=n;i++)
^~~
/in/foo.cc:14:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return true;
^~~~~~
/in/foo.cc: In function 'int PrimeCount(int*, int)':
/in/foo.cc:19:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(int i=0;i<n;i++)
^~~
/in/foo.cc:22:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
return cnt;
^~~~~~