Minor code changes to Map/StringMap

This commit is contained in:
gingerBill
2021-08-09 13:01:26 +01:00
parent d99ed692ba
commit 042f376626
2 changed files with 7 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ GB_STATIC_ASSERT(gb_size_of(u64) >= gb_size_of(void *));
gb_inline HashKey hashing_proc(void const *data, isize len) {
HashKey h = {};
h.key = gb_fnv64a(data, len);
h.key = fnv64a(data, len);
return h;
}