Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
Examples of errors detected by the...

Examples of errors detected by the V588 diagnostic

V588. Expression of the 'A =+ B' kind is used. Possibly meant: 'A += B'. Consider inspecting the expression.


Trans-Proteomic Pipeline

V588 The expression of the 'A =+ B' kind is utilized. Consider reviewing it, as it is possible that 'A += B' was meant. plot_msms plot-msms1.cxx 478

 int main(int argc, char **argv) { .... ii=0; for (i=0; pEnvironment.szPeptide[i]!=0; i++) ii =+ pEnvironment.szPeptide[i]; .... } 

This is what should have been written here: ii += pEnvironment.szPeptide[i];


Libxml2

V588 The expression of the 'A =+ B' kind is utilized. Consider reviewing it, as it is possible that 'A += B' was meant. libxml xpath.c 12676

 static int xmlXPathCompOpEvalFirst(....) { .... total += xmlXPathCompOpEvalFirst(....); .... total =+ xmlXPathCompOpEvalFilterFirst(ctxt, op, first); .... }