aboutsummaryrefslogtreecommitdiff
path: root/DebugUtils
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2016-01-04 12:58:58 -0500
committerGravatar Thomas Van Lenten <thomasvl@google.com>2016-01-04 12:58:58 -0500
commitf8d5577d2a6ea84cfe1e06b1471570694c34585a (patch)
treebd9f91b0569b499ff50c49555d2af1356e430006 /DebugUtils
parent401878398253074c515c03cb3a3f8bb0cc8da6e9 (diff)
Add _CNZombie_ and FigIrisAutoTrimmerMotionSampleExport to the know classes
Diffstat (limited to 'DebugUtils')
-rw-r--r--DebugUtils/GTMMethodCheck.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/DebugUtils/GTMMethodCheck.m b/DebugUtils/GTMMethodCheck.m
index 64bd6f9..ac43a49 100644
--- a/DebugUtils/GTMMethodCheck.m
+++ b/DebugUtils/GTMMethodCheck.m
@@ -23,7 +23,7 @@
#import "GTMObjC2Runtime.h"
#import <dlfcn.h>
-// Checks to see if the cls passed in (or one of it's superclasses) conforms
+// Checks to see if the cls passed in (or one of its superclasses) conforms
// to NSObject protocol. Inheriting from NSObject is the easiest way to do this
// but not all classes (i.e. NSProxy) inherit from NSObject. Also, some classes
// inherit from Object instead of NSObject which is fine, and we'll count as
@@ -46,6 +46,8 @@ static BOOL ConformsToNSObjectProtocol(Class cls) {
|| (strncmp(className, "_NS", 3) == 0)
|| (strncmp(className, "__NS", 4) == 0)
|| (strcmp(className, "CFObject") == 0)
+ || (strcmp(className, "_CNZombie_") == 0)
+ || (strcmp(className, "FigIrisAutoTrimmerMotionSampleExport") == 0)
|| (strcmp(className, "__IncompleteProtocol") == 0)
|| (strcmp(className, "__ARCLite__") == 0)
|| (strcmp(className, "WebMIMETypeRegistry") == 0)