diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-04-19 08:04:23 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-04-20 21:53:46 -0400 |
| commit | a3de9c8de4e539905a85f3cc060f95529b402f18 (patch) | |
| tree | cd441f8970e81170fda231587b801040088123fb /src/types.cpp | |
| parent | 2dedb199b896e97ddd75040fdb935af6d57c5b49 (diff) | |
Add initial support for Objective-C class implementation
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index 9c9472a28..1b2545279 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -729,10 +729,12 @@ gb_global Type *t_map_set_proc = nullptr; gb_global Type *t_objc_object = nullptr; gb_global Type *t_objc_selector = nullptr; gb_global Type *t_objc_class = nullptr; +gb_global Type *t_objc_ivar = nullptr; gb_global Type *t_objc_id = nullptr; gb_global Type *t_objc_SEL = nullptr; gb_global Type *t_objc_Class = nullptr; +gb_global Type *t_objc_Ivar = nullptr; enum OdinAtomicMemoryOrder : i32 { OdinAtomicMemoryOrder_relaxed = 0, // unordered |