Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Commit 2bc93af

Browse files
rogernolanblakewatters
authored andcommitted
Change type of _sourceObject ivars to match the property which is alised to them.
With unmatched type between property and storage, lldb gets confused when printing the object. Error is: instance method ''sourceObject' has incompatible result types in different translation units ('NSObject *' vs. 'id') Signed-off-by: Roger Nolan <[email protected]>
1 parent 85658cb commit 2bc93af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Code/ObjectMapping/RKObjectLoader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ typedef void(^RKObjectLoaderDidLoadObjectsDictionaryBlock)(NSDictionary *diction
136136
* includes Core Data specific mapping logic.
137137
*/
138138
@interface RKObjectLoader : RKRequest {
139-
id _sourceObject;
140-
id _targetObject;
139+
NSObject* _sourceObject;
140+
NSObject* _targetObject;
141141
dispatch_queue_t _mappingQueue;
142142
}
143143

0 commit comments

Comments
 (0)