show/hide this revision's text 2 edit for clarity

Ban in your coding standards the direct use of any bitwise operations in an arbitrary part of the code. Make it mandatory to call a function instead.

So instead of:

int masked = unmasked & 0xFF; // izolate lowest 8 bits

You write:

int masked = GetLowestByte(unmasked);

As a bonus, you'll get a code base which doesn't have dozens of error prone bitwise operations spread all over it.

Only in one place (the implementation of GetLowestByte and its sisters) you'll have the actual bitwise operations. Then you can read these lines two or three times to see if you blew it. Even better, you can unit test that part.

show/hide this revision's text 1

Ban in your coding standards the direct use of any bitwise operations. Make it mandatory to call a function instead.

So instead of:

int masked = unmasked & 0xFF; // izolate lowest 8 bits

You write:

int masked = GetLowestByte(unmasked);

As a bonus, you'll get a code base which doesn't have dozens of error prone bitwise operations spread all over it.

Only in one place (the implementation of GetLowestByte and its sisters) you'll have the actual bitwise operations. Then you can read these lines two or three times to see if you blew it. Even better, you can unit test that part.