mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
Minor clean up of permanent/temporary arena usage
This commit is contained in:
@@ -83,7 +83,7 @@ i32 bundle_android(String original_init_directory) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
int *dir_numbers = gb_alloc_array(temporary_allocator(), int, possible_valid_dirs.count);
|
||||
int *dir_numbers = temporary_alloc_array<int>(possible_valid_dirs.count);
|
||||
|
||||
char buf[1024] = {};
|
||||
for_array(i, possible_valid_dirs) {
|
||||
|
||||
Reference in New Issue
Block a user