aboutsummaryrefslogtreecommitdiff
path: root/src/main.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/main.cpp
parent600f2b7284b8974a18827242c18e790dab0cf06a (diff)
Make all maps use heap allocator implicitly
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 91dcbdb01..7ac78241e 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2516,7 +2516,7 @@ int main(int arg_count, char const **arg_ptr) {
add_library_collection(str_lit("core"), get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("core")));
add_library_collection(str_lit("vendor"), get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("vendor")));
- map_init(&build_context.defined_values, heap_allocator());
+ map_init(&build_context.defined_values);
build_context.extra_packages.allocator = heap_allocator();
string_set_init(&build_context.test_names);