Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
'operation' : unsafe mix of type 'type' and type 'type' in operation
Remarks
This warning is generated for comparison operations between bool and int.
Example
The following example generates C4805:
// C4805.cpp
// compile with: /W1
int main() {
int i = 1;
bool b = true;
if (i == b) { // C4805, comparing bool and int variables
}
}