diff options
| author | gingerBill <bill@gingerbill.org> | 2023-01-03 11:59:52 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-01-03 11:59:52 +0000 |
| commit | 252be0fb417f9cdde5e9c4b348cd995a20433aea (patch) | |
| tree | a1125ba7c12d9b3cb2787080a5f027b08c199c18 /src/common.cpp | |
| parent | 600f2b7284b8974a18827242c18e790dab0cf06a (diff) | |
Make all maps use heap allocator implicitly
Diffstat (limited to 'src/common.cpp')
| -rw-r--r-- | src/common.cpp | 2 |
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); } |