strings: Remove unused hash32_utf8 function

This commit is contained in:
shadeMe 2022-08-17 12:10:51 +02:00
parent 551e73ccfc
commit e032250d42

View File

@ -3,7 +3,7 @@ cimport cython
from libc.string cimport memcpy
from libcpp.set cimport set
from libc.stdint cimport uint32_t
from murmurhash.mrmr cimport hash64, hash32
from murmurhash.mrmr cimport hash64
import srsly
@ -61,9 +61,6 @@ cdef hash_t hash_utf8(char* utf8_string, int length) nogil:
return hash64(utf8_string, length, 1)
cdef uint32_t hash32_utf8(char* utf8_string, int length) nogil:
return hash32(utf8_string, length, 1)
cdef str decode_Utf8Str(const Utf8Str* string):
cdef int i, length