...
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 | ||
---|---|---|
| ||
int a; a == b; |
...
...
In this example, a
is compared with b
. The the comparison of a
against to b
has no effect.
Code Block | ||
---|---|---|
| ||
int a; a == b; |
...