The analyzer has detected a possible error that has to do with meaningless variable assignments.
Consider this example:
int a, b, c;
...
a = b;
c = 10;
b = a;
The "b = a" assignment statement in this code does not make sense. It might be a typo or just unnecessary operation. This is what the correct version of the code should look like:
a = b;
c = 10;
b = a_2;
This diagnostic is classified as:
|
You can look at examples of errors detected by the V6026 diagnostic. |
Was this page helpful?
Your message has been sent. We will email you at
If you do not see the email in your inbox, please check if it is filtered to one of the following folders:
Take
a chance!