From 5c4c94081b864b7d13017496ecbdbd78b761bc67 Mon Sep 17 00:00:00 2001 From: Steven Fisher Date: Mon, 23 Jul 2012 17:19:17 -0700 Subject: [PATCH] Fixed incomplete implementation warning. sharedProfileImageRequestOperationQueue is declared in interface extension, but only implemented on Mac OS X. This causes an incomplete implementation warning. Added same #if around interface as surrounds impelmentation. This only affects sample code. --- Example/Classes/Models/User.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Example/Classes/Models/User.m b/Example/Classes/Models/User.m index 6f54c7f..c22bae1 100644 --- a/Example/Classes/Models/User.m +++ b/Example/Classes/Models/User.m @@ -26,7 +26,9 @@ NSString * const kUserProfileImageDidLoadNotification = @"com.alamofire.user.profile-image.loaded"; @interface User () +#if __MAC_OS_X_VERSION_MIN_REQUIRED + (NSOperationQueue *)sharedProfileImageRequestOperationQueue; +#endif @end @implementation User {