From 4c5dc9443e818d020fcb95144a944c98e7d46055 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 14 Apr 2024 21:58:49 -0400 Subject: Rename SSS_HASH_VECTOR -> TOMO --- builtins/pointer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtins/pointer.c') diff --git a/builtins/pointer.c b/builtins/pointer.c index 271bb6cc..7fe8c160 100644 --- a/builtins/pointer.c +++ b/builtins/pointer.c @@ -65,7 +65,7 @@ public bool Pointer$equal(const void *x, const void *y, const TypeInfo *type) { public uint32_t Pointer$hash(const void *x, const TypeInfo *type) { (void)type; uint32_t hash; - halfsiphash(x, sizeof(void*), SSS_HASH_VECTOR, (uint8_t*)&hash, sizeof(hash)); + halfsiphash(x, sizeof(void*), TOMO_HASH_VECTOR, (uint8_t*)&hash, sizeof(hash)); return hash; } -- cgit v1.2.3