Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'operation' : unsafe mix of type 'type' and type 'type' in operation
This warning is generated for comparison operations between bool and int. The following sample generates C4805:
// C4805.cpp
// compile with: /W1
int main() {
int i = 1;
bool b = true;
if (i == b) { // C4805, comparing bool and int variables
}
}