mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-04 01:54:28 +00:00
8 lines
311 B
Go
8 lines
311 B
Go
// Package mdbxarch contains some architecture detection constants. The
|
|
// primary reason the package exists is because the constant definitions are
|
|
// scary and some will not pass linters.
|
|
package mdbxarch
|
|
|
|
// Width64 is 1 for 64-bit architectures and 0 otherwise.
|
|
const Width64 = 1 << (^uintptr(0) >> 63) / 2
|