Files
fasthttp/bytesconv_64.go
T
Nick Rosbrook d1753f75a7 bytesconv: add appropriate build tags for s390x (#1250)
The bytesconv 32-bit tests fail on s390x, because it is a 64-bit
architecture. Add the appropriate build flags so that 32-bit tests do
not run on this architecture.
2022-03-16 17:31:04 +01:00

9 lines
147 B
Go

//go:build amd64 || arm64 || ppc64 || ppc64le || s390x
// +build amd64 arm64 ppc64 ppc64le s390x
package fasthttp
const (
maxHexIntChars = 15
)