summaryrefslogtreecommitdiff
path: root/objectivec/objc.h
diff options
context:
space:
mode:
Diffstat (limited to 'objectivec/objc.h')
-rw-r--r--objectivec/objc.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/objectivec/objc.h b/objectivec/objc.h
index 6d194971..e0b2167e 100644
--- a/objectivec/objc.h
+++ b/objectivec/objc.h
@@ -252,9 +252,12 @@ namespace BinaryNinja {
class ObjCProcessor {
struct Types {
- QualifiedName id;
- QualifiedName sel;
- QualifiedName BOOL;
+ Ref<Type> id;
+ Ref<Type> sel;
+ Ref<Type> BOOL;
+ } m_types;
+
+ struct TypeNames {
QualifiedName nsInteger;
QualifiedName nsuInteger;
QualifiedName cgFloat;