diff options
| author | gingerBill <bill@gingerbill.org> | 2020-05-27 12:32:11 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-05-27 12:32:11 +0100 |
| commit | 6ac0fb80a6eab6ba28838e8e577dc8ae8cba06a7 (patch) | |
| tree | 9bf9a7315b8344f3a44fb019680bb41bf5c8332f /src/main.cpp | |
| parent | 098699103da15894be771ce7c5f28812fd6de883 (diff) | |
Minor tokenizer performance improvements
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 60ed95ced..0e3d5836d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1513,10 +1513,10 @@ int main(int arg_count, char const **arg_ptr) { init_string_buffer_memory(); init_string_interner(); init_global_error_collector(); + init_keyword_hash_table(); global_big_int_init(); arena_init(&global_ast_arena, heap_allocator()); - array_init(&library_collections, heap_allocator()); // NOTE(bill): 'core' cannot be (re)defined by the user add_library_collection(str_lit("core"), get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("core"))); |