aboutsummaryrefslogtreecommitdiff
path: root/DebugUtils
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2012-01-20 13:00:43 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2012-01-20 13:00:43 +0000
commite0b5233114161abd797c10cf54c9f1c9a8e8773a (patch)
treef15ab08e355914deadd53032b3c71941fc2467ee /DebugUtils
parentaecd18d718390a38056de9674b8d29388cfee81f (diff)
[Author: aharper]
Another Apple class that method check should ignore (Lion). R=dmaclach,thomasvl APPROVED=dmaclach
Diffstat (limited to 'DebugUtils')
-rw-r--r--DebugUtils/GTMMethodCheck.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/DebugUtils/GTMMethodCheck.m b/DebugUtils/GTMMethodCheck.m
index 0331a67..cb3c240 100644
--- a/DebugUtils/GTMMethodCheck.m
+++ b/DebugUtils/GTMMethodCheck.m
@@ -46,6 +46,7 @@ static BOOL ConformsToNSObjectProtocol(Class cls) {
|| (strncmp(className, "_NS", 3) == 0)
|| (strncmp(className, "__NS", 4) == 0)
|| (strcmp(className, "CFObject") == 0)
+ || (strcmp(className, "__IncompleteProtocol") == 0)
#if GTM_IPHONE_SDK
|| (strcmp(className, "Object") == 0)
#endif