diff options
Diffstat (limited to 'clib/cstring.h')
| -rw-r--r-- | clib/cstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); }
|
