aboutsummaryrefslogtreecommitdiff
path: root/src/checker.hpp
diff options
context:
space:
mode:
authorHarold Brenes <harold@hbrenes.com>2025-04-27 22:48:16 -0400
committerHarold Brenes <harold@hbrenes.com>2025-04-27 22:55:53 -0400
commitf3923ed66640ea9fd342ca851fdd2bd794405e0c (patch)
tree516f3f79213c9b6b2c70c95385e62d6f7cf408b4 /src/checker.hpp
parent6c9c239a5ef14a3365121b4964217a9bda255454 (diff)
Fix indentations
Fix Objective-C wrapper procs not forwarding return value
Diffstat (limited to 'src/checker.hpp')
-rw-r--r--src/checker.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/checker.hpp b/src/checker.hpp
index 574c71c7f..336f09a7e 100644
--- a/src/checker.hpp
+++ b/src/checker.hpp
@@ -148,13 +148,13 @@ struct AttributeContext {
String objc_class;
String objc_name;
- String objc_selector;
+ String objc_selector;
Type * objc_type;
- Type * objc_superclass;
- Type * objc_ivar;
+ Type * objc_superclass;
+ Type * objc_ivar;
Entity *objc_context_provider;
bool objc_is_class_method : 1;
- bool objc_is_implementation : 1; // This struct or proc provides a class/method implementation, not a binding to an existing type.
+ bool objc_is_implementation : 1; // This struct or proc provides a class/method implementation, not a binding to an existing type.
String require_target_feature; // required by the target micro-architecture
String enable_target_feature; // will be enabled for the procedure only
@@ -371,8 +371,8 @@ struct ObjcMsgData {
};
struct ObjcMethodData {
- AttributeContext ac;
- Entity *proc_entity;
+ AttributeContext ac;
+ Entity *proc_entity;
};
enum LoadFileTier {
@@ -489,10 +489,10 @@ struct CheckerInfo {
BlockingMutex objc_types_mutex;
PtrMap<Ast *, ObjcMsgData> objc_msgSend_types;
- MPSCQueue<Entity *> objc_class_implementations;
+ MPSCQueue<Entity *> objc_class_implementations;
- BlockingMutex objc_method_mutex;
- PtrMap<Type *, Array<ObjcMethodData>> objc_method_implementations;
+ BlockingMutex objc_method_mutex;
+ PtrMap<Type *, Array<ObjcMethodData>> objc_method_implementations;
BlockingMutex load_file_mutex;