aboutsummaryrefslogtreecommitdiff
path: root/builtins/table.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-05 16:23:05 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-05 16:23:05 -0400
commitbac14fa6c79b6abea50fd5f188799ae8e83cb20d (patch)
tree416a7b9ff39075ab33fb93ab4e86003df4d25aca /builtins/table.h
parent47e8972427c152891c4c6c4b458f78cd7ceb8aee (diff)
Fully clean up siphash code and fix some issues
Diffstat (limited to 'builtins/table.h')
-rw-r--r--builtins/table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/table.h b/builtins/table.h
index cd267912..12f20f29 100644
--- a/builtins/table.h
+++ b/builtins/table.h
@@ -73,7 +73,7 @@ void Table$mark_copy_on_write(Table_t *t);
#define TABLE_COPY(t) ({ TABLE_INCREF(t); t; })
int32_t Table$compare(const Table_t *x, const Table_t *y, const TypeInfo *type);
bool Table$equal(const Table_t *x, const Table_t *y, const TypeInfo *type);
-uint32_t Table$hash(const Table_t *t, const TypeInfo *type);
+uint64_t Table$hash(const Table_t *t, const TypeInfo *type);
Text_t Table$as_text(const Table_t *t, bool colorize, const TypeInfo *type);
void *Table$str_entry(Table_t t, int64_t n);