aboutsummaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-09 13:01:26 +0100
committergingerBill <bill@gingerbill.org>2021-08-09 13:01:26 +0100
commit042f376626d00cc9f954fef1a5b94143afe4b5c6 (patch)
tree89ccf202f20542fbf9d8e4ce8e2195738b5e50be /src/map.cpp
parentd99ed692baf8c2d6a89b907bf48c2d2fb175a6c8 (diff)
Minor code changes to Map/StringMap
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp
index 51d0b9885..55eb4fbce 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -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;
}