Compare commits

...

1 commit

Author SHA1 Message Date
Travis
f92e880751 handle unionArrayBitmap width of bitmaps correctly 2017-03-06 17:59:12 -06:00

View file

@ -1364,6 +1364,7 @@ func unionArrayBitmap(a, b *container) *container {
break break
} else if i >= len(a.array) { } else if i >= len(a.array) {
output.add(vb) output.add(vb)
continue
} else if eof { } else if eof {
output.add(a.array[i]) output.add(a.array[i])
i++ i++