diff options
Diffstat (limited to 'include/my_bit.h')
-rw-r--r-- | include/my_bit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_bit.h b/include/my_bit.h index 221e7d274ea..36764d8253d 100644 --- a/include/my_bit.h +++ b/include/my_bit.h @@ -45,7 +45,7 @@ Count bits in 32bit integer http://graphics.stanford.edu/~seander/bithacks.html under "Counting bits set, in parallel" - (Orignal code public domain). + (Original code public domain). */ static inline uint my_count_bits_uint32(uint32 v) { @@ -77,7 +77,7 @@ static inline uint my_count_bits(ulonglong x) NOTES Algorithm by Sean Anderson, according to: http://graphics.stanford.edu/~seander/bithacks.html - (Orignal code public domain) + (Original code public domain) Comments shows how this works with 01100000000000000000000000001011 */ |