summaryrefslogtreecommitdiff
path: root/vendor/codeberg.org/gruf/go-structr/hash_32.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/codeberg.org/gruf/go-structr/hash_32.go')
-rw-r--r--vendor/codeberg.org/gruf/go-structr/hash_32.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/codeberg.org/gruf/go-structr/hash_32.go b/vendor/codeberg.org/gruf/go-structr/hash_32.go
deleted file mode 100644
index 883a3a174..000000000
--- a/vendor/codeberg.org/gruf/go-structr/hash_32.go
+++ /dev/null
@@ -1,14 +0,0 @@
-//go:build structr_32bit_hash
-// +build structr_32bit_hash
-
-package structr
-
-// Hash is the current compiler
-// flag defined cache key hash
-// checksum type. Here; uint32.
-type Hash uint32
-
-// uint64ToHash converts uint64 to currently Hash type.
-func uint64ToHash(u uint64) Hash {
- return Hash(u >> 32)
-}