From 555c434a7d64ad7de9907bb0f0baf8f6cca685f9 Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Thu, 15 Nov 2018 09:35:41 -0500 Subject: Project modernization. - Create shared scheme to use. - Let Xcode (9.4.1) update the project files and add some warnings. - Remove -finalize (GC days are gone) - Add some more pragmas to compile cleanly. - The iOS targets had a mix of 7.0 and 8.0 min versions, so make them all 8. --- Foundation/GTMSystemVersion.m | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Foundation/GTMSystemVersion.m') diff --git a/Foundation/GTMSystemVersion.m b/Foundation/GTMSystemVersion.m index 6519902..06bf8ef 100644 --- a/Foundation/GTMSystemVersion.m +++ b/Foundation/GTMSystemVersion.m @@ -18,6 +18,10 @@ #import "GTMSystemVersion.h" +#pragma clang diagnostic push +// Ignore all of the deprecation warnings for GTMSystemVersion.h +#pragma clang diagnostic ignored "-Wdeprecated-implementations" + #import #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_10 && \ MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_8 @@ -285,3 +289,5 @@ static NSString *const kSystemVersionPlistPath = @"/System/Library/CoreServices/ } @end + +#pragma clang diagnostic pop -- cgit v1.2.3