From dbd5fc3220c9069274a8b8562818a8b429604ad1 Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Wed, 27 Feb 2013 09:24:18 -0800 Subject: [PATCH] Adding missing #pragma clang diagnostic pop (/thanks @tewha) --- AFNetworking/AFHTTPRequestOperation.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AFNetworking/AFHTTPRequestOperation.m b/AFNetworking/AFHTTPRequestOperation.m index f7601c0..b8bec28 100644 --- a/AFNetworking/AFHTTPRequestOperation.m +++ b/AFNetworking/AFHTTPRequestOperation.m @@ -30,7 +30,6 @@ #define AF_CAST_TO_BLOCK __bridge void * #endif -// We do a little bit of duck typing in this file which can trigger this warning. Turn it off for this source file. #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wstrict-selector-match" @@ -371,3 +370,5 @@ didReceiveResponse:(NSURLResponse *)response } @end + +#pragma clang diagnostic pop