mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-21 10:54:31 +08:00
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 <rog@hatbat.net>
This commit is contained in:
committed by
Blake Watters
parent
85658cb6cd
commit
2bc93af7cf
@@ -136,8 +136,8 @@ typedef void(^RKObjectLoaderDidLoadObjectsDictionaryBlock)(NSDictionary *diction
|
||||
* includes Core Data specific mapping logic.
|
||||
*/
|
||||
@interface RKObjectLoader : RKRequest {
|
||||
id _sourceObject;
|
||||
id _targetObject;
|
||||
NSObject* _sourceObject;
|
||||
NSObject* _targetObject;
|
||||
dispatch_queue_t _mappingQueue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user