Skip to content

Commit

Permalink
Fixing spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Feb 13, 2014
1 parent 39294d7 commit 59c644f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitset.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ func (b *BitSet) isEven() bool {
func (b *BitSet) cleanLastWord() {
if !b.isEven() {
// Mask for cleaning last word
const allBits uint64 = 0xffffffffffffffff
const allBits uint64 = 0xffffffffffffffff
b.set[wordsNeeded(b.length)-1] &= allBits >> (wordSize - b.length%wordSize)
}
}
Expand Down

0 comments on commit 59c644f

Please sign in to comment.