C6323

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

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;  
}