mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 09:52:23 -07:00
using on struct/union fields
This commit is contained in:
+2
-2
@@ -14,8 +14,8 @@ struct HashKey {
|
||||
|
||||
gb_inline HashKey hashing_proc(void const *data, isize len) {
|
||||
HashKey h = {};
|
||||
h.key = gb_murmur64(data, len);
|
||||
// h.key = gb_fnv64a(data, len);
|
||||
// h.key = gb_murmur64(data, len);
|
||||
h.key = gb_fnv64a(data, len);
|
||||
return h;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user