rule: wrong for-loop increment
Brought to you by:
chrismair
QF: Complicated, subtle or wrong increment in for-loop (QF_QUESTIONABLE_FOR_LOOP)
Are you sure this for loop is incrementing the correct variable? It appears that another variable is being initialized and checked by the for loop.
Example:
for (int x = 0; y < size; x++) { ... }