The analyzer has detected a potential error: an extra lexeme in the code. Such "lost" lexemes most often occur in the code when the key word return is missing.
Consider this sample:
bool Run(int *p)
{
if (p == NULL)
false;
...
}
The developer forgot to write "return" here. The code compiles well but has no practical sense.
This is the correct code:
bool Run(int *p)
{
if (p == NULL)
return false;
...
}
This diagnostic is classified as:
|
You can look at examples of errors detected by the V606 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!