C6295

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

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.

Example

The following code generates this warning:

void f( )  
{  
  for (unsigned int i = 100; i >= 0; i--)   
  {  
    // code ...  
  }  
}  

To correct this warning, use the following code:

void f( )  
{  
   for (unsigned int i = 100; i > 0; i--)  
   {  
      // code ...  
   }  
}