Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Non-Compliant Code Example 1

In this example, a is compared with b. The the comparison of a against to b has no effect.

Code Block
bgColor#FFCCCC
int a;
a == b;

...