From 2d0b4c7294bc3dcd9f8f588259618b1728c6dc14 Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Mon, 28 Jan 2013 19:00:18 +0000 Subject: Silence a few more warnings about non-NSObject classes in various SDKs. DELTA=3 (3 added, 0 deleted, 0 changed) --- DebugUtils/GTMMethodCheck.m | 3 +++ 1 file changed, 3 insertions(+) (limited to 'DebugUtils') diff --git a/DebugUtils/GTMMethodCheck.m b/DebugUtils/GTMMethodCheck.m index b31960b..650d255 100644 --- a/DebugUtils/GTMMethodCheck.m +++ b/DebugUtils/GTMMethodCheck.m @@ -47,8 +47,11 @@ static BOOL ConformsToNSObjectProtocol(Class cls) { || (strncmp(className, "__NS", 4) == 0) || (strcmp(className, "CFObject") == 0) || (strcmp(className, "__IncompleteProtocol") == 0) + || (strcmp(className, "__ARCLite__") == 0) + || (strcmp(className, "WebMIMETypeRegistry") == 0) #if GTM_IPHONE_SDK || (strcmp(className, "Object") == 0) + || (strcmp(className, "UIKeyboardCandidateUtilities") == 0) #endif ) { return YES; -- cgit v1.2.3