From 415ece4dd459de64de7d73c3d7f28212e0f1703b Mon Sep 17 00:00:00 2001 From: Wen-Hao Lue Date: Wed, 11 Jul 2012 01:04:16 -0700 Subject: [PATCH] Making the assign attribute on properties explicit to suppress warnings on iOS 6 SDK. --- AFNetworking/AFHTTPRequestOperation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AFNetworking/AFHTTPRequestOperation.h b/AFNetworking/AFHTTPRequestOperation.h index 9cab0e5..bda2d17 100644 --- a/AFNetworking/AFHTTPRequestOperation.h +++ b/AFNetworking/AFHTTPRequestOperation.h @@ -85,12 +85,12 @@ extern NSString * AFCreateIncompleteDownloadDirectoryPath(void); /** The callback dispatch queue on success. If `NULL` (default), the main queue is used. */ -@property (nonatomic) dispatch_queue_t successCallbackQueue; +@property (nonatomic, assign) dispatch_queue_t successCallbackQueue; /** The callback dispatch queue on failure. If `NULL` (default), the main queue is used. */ -@property (nonatomic) dispatch_queue_t failureCallbackQueue; +@property (nonatomic, assign) dispatch_queue_t failureCallbackQueue; ///------------------------------------------------------------- /// @name Managing Accceptable HTTP Status Codes & Content Types