From eeff90f79cdb3ee635b0f2fa270033a91c4824ec Mon Sep 17 00:00:00 2001 From: Tyge Løvset <60263450+tylo-work@users.noreply.github.com> Date: Mon, 16 Mar 2020 18:32:50 +0100 Subject: Add files via upload --- clib/cstring.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clib/cstring.h') diff --git a/clib/cstring.h b/clib/cstring.h index 2e5de366..08e6c4c6 100644 --- a/clib/cstring.h +++ b/clib/cstring.h @@ -237,7 +237,7 @@ static inline char* cstring_splitNext(const char* delimiters) { // CVector / CMap API functions: #define cstring_getRaw(x) ((x).str) -static inline uint32_t cstring_hashRaw(const char** str, size_t sz_ignored) { return c_murmurHash(*str, strlen(*str)); } +static inline uint32_t cstring_hashRaw(const char** str, size_t sz_ignored) { return c_defaultHash(*str, strlen(*str)); } static inline int cstring_compareRaw(CString* self, const char** str, size_t sz_ignored) { return strcmp(self->str, *str); } -- cgit v1.2.3