diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-07 17:54:25 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-07 17:54:25 +0100 |
| commit | 2e4837bf37ef494fd7ee5cc2b587f4ab32dbe5b2 (patch) | |
| tree | 079f3184ff65ddb78be1caef0df92c63b10a27b1 /src/checker.cpp | |
| parent | b6944b8acb55c090d68d77014017282f0f4df9fb (diff) | |
| parent | d612f6ec07887f906174cd33465241c75b5cf10e (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index e72061f56..a13290750 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -1460,6 +1460,10 @@ gb_internal void destroy_checker_info(CheckerInfo *i) { mpsc_destroy(&i->foreign_decls_to_check); map_destroy(&i->objc_msgSend_types); + string_set_destroy(&i->obcj_class_name_set); + mpsc_destroy(&i->objc_class_implementations); + map_destroy(&i->objc_method_implementations); + string_map_destroy(&i->load_file_cache); string_map_destroy(&i->load_directory_cache); map_destroy(&i->load_directory_map); |