Skip to content

Instantly share code, notes, and snippets.

@alecbz
Created July 29, 2011 01:30
Show Gist options
  • Select an option

  • Save alecbz/1112954 to your computer and use it in GitHub Desktop.

Select an option

Save alecbz/1112954 to your computer and use it in GitHub Desktop.
``` cpp
void inc(int& n)
{
int off = 1;
while(n & off)
{
n ^= off;
off <<= 1;
}
n ^= off;
}
```
void inc(int& n)
{
int off = 1;
while(n & off)
{
n ^= off;
off <<= 1;
}
n ^= off;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment