spaolacci / murmur3

Native MurmurHash3 Go implementation
BSD 3-Clause "New" or "Revised" License
947 stars 127 forks source link

fix warning from go vet #27

Open junchih opened 4 years ago

junchih commented 4 years ago

the converting from uintptr to unsafe.Pointer is not safe, please refer to the golang document for more detail.

https://golang.org/pkg/unsafe/#Pointer

radhianamri commented 1 year ago

this commit has fixed my unsafe pointer fatal errors in UTs when running using -race flag