...
When the assignment is intended, the following compliant solution may be used as the programmer's intent is clearer:
Code Block | ||
---|---|---|
| ||
if ((a = b) == true) { /* ... */ } |
...
...
When the assignment is intended, the following compliant solution may be used as the programmer's intent is clearer:
Code Block | ||
---|---|---|
| ||
if ((a = b) == true) { /* ... */ } |
...