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' : not allowed on operand of type 'bool'
You cannot apply a decrement operator to objects of type bool
.
The following sample generates C2428:
// C2428.cpp
void g(bool fFlag) {
--fFlag; // C2428
fFlag--; // C2428
}