lib/uint64set: go fmt after c0a9b87f46

This commit is contained in:
Aliaksandr Valialkin 2024-02-15 14:50:44 +02:00
parent c0a9b87f46
commit eb1505ba14
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -815,7 +815,7 @@ func (b *bucket16) add(x uint16) bool {
func (b *bucket16) addMulti(a []uint64) int {
if b.bits == nil {
if b.smallPoolLen + len(a) > len(b.smallPool) {
if b.smallPoolLen+len(a) > len(b.smallPool) {
b.switchSmallPoolToBits()
goto fastPath
}