diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-08-06 15:13:12 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-08-06 20:27:31 -0400 |
| commit | 9d8e15b3af6e41b3b3d4359eb0d2324cfa34608f (patch) | |
| tree | e6b09afad4fefe38c8ab9888198e1bbf75eea2cf /src/checker.cpp | |
| parent | 09a1e170bc92a0ea48a8ee67599c2936e924fe4d (diff) | |
Implementes the block ABI.2010.3.16 natively via the `objc_block` intrinsic and the `Objc_Block` builtin type.
See: https://clang.llvm.org/docs/Block-ABI-Apple.html
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); |