Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
warning C6323 - use of arithmetic operator on Boolean type(s)
This warning occurs if arithmetic operators are used on Boolean data types. Use of incorrect operator might yield incorrect results. It also indicates that the programmer's intent is not reflected in the code.
Example
The following code generates this warning:
int test(bool a, bool b)
{
int c = a + b; //C6323
return c;
}
To correct this warning, use correct data type and operator.
int test(int a, int b)
{
int c = a + b;
return c;
}