aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-02-18 21:30:25 +0000
committergingerBill <bill@gingerbill.org>2022-02-18 21:30:25 +0000
commit71df46456a4db2592e8cebbdd4c46dc8b58b5a24 (patch)
tree4152775ac24721cd026025d1e478d2eb9a254b41 /src/main.cpp
parentcd89d8a3c414a6929ec058a04aeec568d99505a5 (diff)
Minimize memory usage by having an arena per thread rather than an arena per file
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 014fbf822..291b56996 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2577,7 +2577,7 @@ int main(int arg_count, char const **arg_ptr) {
// NOTE(bill): add 'shared' directory if it is not already set
if (!find_library_collection_path(str_lit("shared"), nullptr)) {
add_library_collection(str_lit("shared"),
- get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("shared")));
+ get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("shared")));
}