aboutsummaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
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 d616490e2..49ca604d0 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -65,7 +65,7 @@ bool hash_key_equal(HashKey a, HashKey b) {
// NOTE(bill): If two string's hashes collide, compare the strings themselves
if (a.kind == HashKey_String) {
if (b.kind == HashKey_String) {
- return str_eq(a.string, b.string);
+ return a.string == b.string;
}
return false;
}