mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-15 07:43:13 +00:00
Use heap_allocator for all hash set types
This commit is contained in:
@@ -4854,7 +4854,7 @@ gb_internal void destroy_ast_file(AstFile *f) {
|
||||
|
||||
gb_internal bool init_parser(Parser *p) {
|
||||
GB_ASSERT(p != nullptr);
|
||||
string_set_init(&p->imported_files, heap_allocator());
|
||||
string_set_init(&p->imported_files);
|
||||
array_init(&p->packages, heap_allocator());
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user