Code Inspection: Incompatible bitwise mask operation
Reports a bitwise mask expression which for sure evaluates to true
or false
. Expressions are of the form (var & constant1) == constant2
or (var | constant1) == constant2
, where constant1
and constant2
are incompatible bitmask constants.
Example:
// Incompatible mask: as the last byte in mask is zero,
// something like 0x1200 would be possible, but not 0x1234
if ((mask & 0xFF00) == 0x1234) {...}
Suppress an inspection in the editor
Position the caret at the highlighted line and press Alt+Enter or click .
Click the arrow next to the inspection you want to suppress and select the necessary suppress action.
Last modified: 13 May 2022