C5903: Zero modulus

[WARNING]

Description

The Compiler has detected a % operation with zero. Because the modulus operation implies also a division (division by zero), the compiler issues a warning. This message may be generated during tree optimizations (Option -Ont to switch it off).

Example
  i = j%0;  // error

  
Tips

Correct the statement.