28-09-2016, 02:00 PM
Neither `|` nor `|=` is listed as allowed operator.
Does this mean the following code a violation of Rule 4-5-1?
Does this mean the following code a violation of Rule 4-5-1?
Code:
bool b1 = false;
void f(int x)
{
b1 |= (x == 0);
}
<t></t>