C6295
Visual Studio 2012
warning C6295: Ill-defined for-loop: <variable> values are of the range "min" to "max". Loop executed indefinitely
This warning indicates that a for-loop might not function as intended. The for-loop tests an unsigned value against zero (0) with >=. The result is always true, therefore the loop is infinite.