Skip to content

Instantly share code, notes, and snippets.

@reportbase
Created March 22, 2015 21:12
Show Gist options
  • Save reportbase/49600ceb3652415aefa2 to your computer and use it in GitHub Desktop.
Save reportbase/49600ceb3652415aefa2 to your computer and use it in GitHub Desktop.
count bits
template<unsigned char b>
struct ByteBits
{
enum
{
COUNT = ((b >> 0) & 1) +
((b >> 1) & 1) +
((b >> 2) & 1) +
((b >> 3) & 1) +
((b >> 4) & 1) +
((b >> 5) & 1) +
((b >> 6) & 1) +
((b >> 7) & 1)
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment