Skip to content

Instantly share code, notes, and snippets.

@reportbase
Created March 22, 2015 21:11
Show Gist options
  • Save reportbase/b3c0abb5f1a40181df14 to your computer and use it in GitHub Desktop.
Save reportbase/b3c0abb5f1a40181df14 to your computer and use it in GitHub Desktop.
Is power of 2?
inline bool ispowerof2(int i)
{
return i > 0 && (i & (i - 1)) == 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment