Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Aug 17, 2018
1 parent 2728d52 commit d313e16
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 @@ -283,7 +283,7 @@ func (b *BitSet) NextSetMany(i uint, buffer []uint) (uint, []uint) {
for word != 0 {
r := trailingZeroes64(word)
t := word & ((^word) + 1)
myanswer[size] = r + uint(x+idx+1)*64
myanswer[size] = r + uint(x+idx+1)*64
size++
if size == capacity {
goto End
Expand Down

0 comments on commit d313e16

Please sign in to comment.