From 06b20703e246c5d24cc58fe4772028e0ed724136 Mon Sep 17 00:00:00 2001 From: Sahil-4555 Date: Tue, 13 Jan 2026 10:43:25 +0530 Subject: [PATCH] Revert "fix lint" This reverts commit 4bf0f253514a8512d6c5e2938bc943974fc0df86. --- common/bitutil/bitutil.go | 1 + 1 file changed, 1 insertion(+) diff --git a/common/bitutil/bitutil.go b/common/bitutil/bitutil.go index b4d44da98f..99a8c2ee18 100644 --- a/common/bitutil/bitutil.go +++ b/common/bitutil/bitutil.go @@ -15,6 +15,7 @@ import ( const wordSize = int(unsafe.Sizeof(uintptr(0))) const supportsUnaligned = runtime.GOARCH == "386" || runtime.GOARCH == "amd64" || runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" || runtime.GOARCH == "s390x" + // ANDBytes ands the bytes in a and b. The destination is assumed to have enough // space. Returns the number of bytes and'd. func ANDBytes(dst, a, b []byte) int {