using on struct/union fields

This commit is contained in:
Ginger Bill
2016-08-24 23:25:56 +01:00
parent 6bd898e552
commit d2c64be85c
11 changed files with 461 additions and 189 deletions

View File

@@ -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;
}