From fb4035f4403005ad400e98a0f1f6f527a26a1658 Mon Sep 17 00:00:00 2001 From: dmaclach Date: Sun, 11 Nov 2018 10:46:22 -0800 Subject: Deprecate GTMRegex. Use NSRegularExpression instead. (#184) --- Foundation/GTMRegexTest.m | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Foundation/GTMRegexTest.m') 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 -- cgit v1.2.3