Change bitwise to logical OR
Semantically, logical OR is what is desired here. I suspect the use of bitwise was a performance hack for old hardware. Logical OR can short circuit, giving the compiler an optimisation opportunity.
Semantically, logical OR is what is desired here. I suspect the use of bitwise was a performance hack for old hardware. Logical OR can short circuit, giving the compiler an optimisation opportunity.