Skip to content

Commit

Permalink
Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed May 27, 2021
1 parent 096b832 commit 2ee925e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roaring64/bsi64.go
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ func (b *BSI) addDigit(foundSet *Bitmap, i int) {
}
carry := And(b.bA[i], foundSet)
b.bA[i].Xor(foundSet)
if !carry.isEmpty() {
if !carry.IsEmpty() {
if i+1 >= len(b.bA) {
b.bA = append(b.bA, NewBitmap())
}
Expand Down

0 comments on commit 2ee925e

Please sign in to comment.