コンパイラの警告 (レベル 1) C4805
- [アーティクル]
-
-
'operation' : 演算中の 'type' 型と 'type' 型の混用は安全ではありません
この警告は、bool と int の比較操作に対して生成されます。次の例では、C4805 が生成されます。
// C4805.cpp
// compile with: /W1
int main() {
int i = 1;
bool b = true;
if (i == b) { // C4805, comparing bool and int variables
}
}