diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 16:23:05 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 16:23:05 -0400 |
| commit | bac14fa6c79b6abea50fd5f188799ae8e83cb20d (patch) | |
| tree | 416a7b9ff39075ab33fb93ab4e86003df4d25aca /builtins/types.h | |
| parent | 47e8972427c152891c4c6c4b458f78cd7ceb8aee (diff) | |
Fully clean up siphash code and fix some issues
Diffstat (limited to 'builtins/types.h')
| -rw-r--r-- | builtins/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/types.h b/builtins/types.h index 70cf89c3..0b48ab36 100644 --- a/builtins/types.h +++ b/builtins/types.h @@ -9,7 +9,7 @@ struct TypeInfo; -typedef uint32_t (*hash_fn_t)(const void*, const struct TypeInfo*); +typedef uint64_t (*hash_fn_t)(const void*, const struct TypeInfo*); typedef int32_t (*compare_fn_t)(const void*, const void*, const struct TypeInfo*); typedef bool (*equal_fn_t)(const void*, const void*, const struct TypeInfo*); typedef Text_t (*text_fn_t)(const void*, bool, const struct TypeInfo*); |
