Merge pull request #362 from travisturner/roaring-clone-bug

have roaring clone() return the clone (as opposed to the original)
This commit is contained in:
Travis Turner 2017-03-06 10:16:45 -06:00 committed by GitHub
commit 17910f8ed0

View file

@ -1057,7 +1057,7 @@ func (c *container) clone() *container {
copy(other.bitmap, c.bitmap)
}
return c
return other
}
// WriteTo writes c to w.