diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-08-24 23:25:56 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-08-24 23:25:56 +0100 |
| commit | d2c64be85ca15117b1745b254b1806ea739aef43 (patch) | |
| tree | 2f5192cfbff77a6eef55ddf1fe2f1269b403561a /src/common.cpp | |
| parent | 6bd898e552392b1bd11ad16c7476833261c1d4b7 (diff) | |
`using` on struct/union fields
Diffstat (limited to 'src/common.cpp')
| -rw-r--r-- | src/common.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.cpp b/src/common.cpp index 8e23090e5..ccf165d35 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -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; } |