Versions Compared

Key

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

...

Code Block
bgColor#FFCCCC
int a;
a == b;
/* ... */

This is likely a case of the programmer mistakenly using the equals operator == instead of the assignment operator =.

...

Code Block
bgColor#ccccff
int a;
a = b;
/* ... */

Non-Compliant Code Example 2

...