aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-01-03 11:59:52 +0000
committergingerBill <bill@gingerbill.org>2023-01-03 11:59:52 +0000
commit252be0fb417f9cdde5e9c4b348cd995a20433aea (patch)
treea1125ba7c12d9b3cb2787080a5f027b08c199c18 /src/common.cpp
parent600f2b7284b8974a18827242c18e790dab0cf06a (diff)
Make all maps use heap allocator implicitly
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 3b6ea59e8..199a263a1 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -373,7 +373,7 @@ gb_internal char const *string_intern(String const &string) {
}
gb_internal void init_string_interner(void) {
- map_init(&string_intern_map, heap_allocator());
+ map_init(&string_intern_map);
}