Update roaring/container_stash.go

Co-authored-by: Jaden Weiss <jaden@jadendw.dev>
This commit is contained in:
tgruben 2020-06-17 08:51:25 -05:00 committed by GitHub
parent f47888989a
commit 3103da2c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -453,7 +453,7 @@ func (c *Container) AsBitmap(target []uint64) (out []uint64) {
// fillerBitmap is a bitmap full of filler.
var fillerBitmap = func() (a [1024]uint64) {
for i := 0; i < len(a); i++ {
for i := range a {
a[i] = ^uint64(0)
}
return a