C2901: Unrolling loop

[DISABLE, INFORMATION , WARNING, ERROR]

Description

A loop has been detected for unrolling. Either the loop has only one round, e.g.

  for(i=1; i<2; i++)

  

or loop unrolling was explicitly requested (Compiler Option \c -Cu or <tt>#pragma LOOP_UNROLL</tt>) or the loop has been detected as empty as

  for(i=1; i<200; i++);

  
Tips

If it is a programming error, correct the loop condition.

See also