diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-13 03:21:20 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-13 03:21:20 -0400 |
| commit | df520b7d61f499e2b5deb0bb5ef8211f3c2aa3cd (patch) | |
| tree | b1aef195b4146d50bcb9a3ef651fb68ddb6c6d81 /builtins | |
| parent | 9edace28e2e43fb8cb8dc64191b3ed3f5a185f99 (diff) | |
Fix int hashes
Diffstat (limited to 'builtins')
| -rw-r--r-- | builtins/integers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/integers.c b/builtins/integers.c index aa1ab4ae..de4c9b78 100644 --- a/builtins/integers.c +++ b/builtins/integers.c @@ -385,7 +385,7 @@ public const TypeInfo $Int = { .CustomInfo={ .compare=(void*)Int$compare, .equal=(void*)Int$equal, - .hash=(void*)Int$equal, + .hash=(void*)Int$hash, .as_text=(void*)Int$as_text, }, }; |
