diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-05-03 01:34:01 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-05-03 03:09:30 -0400 |
| commit | a00b91577d998b3795afd099504a6c2b9d99460e (patch) | |
| tree | 31e5b23479f0db98d1e657e431e615247683061a /src/checker.cpp | |
| parent | 5f0b47c373e34c231879b2700e78ab1bbd6219b5 (diff) | |
Prevent multiple uses of the same Objective-C class name
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index 0b093936d..6e1c3849e 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -1390,6 +1390,7 @@ gb_internal void init_checker_info(CheckerInfo *i) { map_init(&i->objc_msgSend_types); mpsc_init(&i->objc_class_implementations, a); + string_set_init(&i->obcj_class_name_set, 0); map_init(&i->objc_method_implementations); string_map_init(&i->load_file_cache); |