aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMRegexTest.m
diff options
context:
space:
mode:
authorGravatar dmaclach <dmaclach@gmail.com>2018-11-11 10:46:22 -0800
committerGravatar GitHub <noreply@github.com>2018-11-11 10:46:22 -0800
commitfb4035f4403005ad400e98a0f1f6f527a26a1658 (patch)
tree621e6eb788574743ea1759b9d63aa4eae186657b /Foundation/GTMRegexTest.m
parent1507eb202cf007c7788d220a1f319d88b8709d6b (diff)
Deprecate GTMRegex. Use NSRegularExpression instead. (#184)
Diffstat (limited to 'Foundation/GTMRegexTest.m')
-rw-r--r--Foundation/GTMRegexTest.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/Foundation/GTMRegexTest.m b/Foundation/GTMRegexTest.m
index 65aadd5..75f5aad 100644
--- a/Foundation/GTMRegexTest.m
+++ b/Foundation/GTMRegexTest.m
@@ -26,6 +26,10 @@
// libregex, we just want to test our wrapper.
//
+#pragma clang diagnostic push
+// Ignore all of the deprecation warnings for GTMRegex
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
+
@interface GTMRegexTest : GTMTestCase
@end
@@ -1218,3 +1222,5 @@
}
@end
+
+#pragma clang diagnostic pop