aboutsummaryrefslogtreecommitdiff
path: root/DebugUtils
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2014-08-01 20:30:07 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2014-08-01 20:30:07 +0000
commit24483183e727acc8daf490ea9f288ee7546991a6 (patch)
tree818092d8ed6130d03c7ca29262c47d0ce79c843c /DebugUtils
parent0f81b5483f17785f06a8ad4c4d56de227f983f87 (diff)
General fixes for GTM.
a) only define GTM_IPHONE_USE_SENTEST if it hasn't been defined on Mac. It's a horrible name, but it does control us using SENTEST instead of XCTest. b) Object is now found in the runtime on both iOS and MacOS c) MethodCheck had a potential memory leak DELTA=47 (18 added, 5 deleted, 24 changed) DELTA_BY_EXTENSION=h=30,m=12
Diffstat (limited to 'DebugUtils')
-rw-r--r--DebugUtils/GTMMethodCheck.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/DebugUtils/GTMMethodCheck.m b/DebugUtils/GTMMethodCheck.m
index c18ada8..09cadc9 100644
--- a/DebugUtils/GTMMethodCheck.m
+++ b/DebugUtils/GTMMethodCheck.m
@@ -49,8 +49,8 @@ static BOOL ConformsToNSObjectProtocol(Class cls) {
|| (strcmp(className, "__IncompleteProtocol") == 0)
|| (strcmp(className, "__ARCLite__") == 0)
|| (strcmp(className, "WebMIMETypeRegistry") == 0)
-#if GTM_IPHONE_SDK
|| (strcmp(className, "Object") == 0)
+#if GTM_IPHONE_SDK
|| (strcmp(className, "UIKeyboardCandidateUtilities") == 0)
|| (strcmp(className, "JSExport") == 0)
#endif