From 6a5a6d54cc4ffba4660dbd176c1074ed845134ae Mon Sep 17 00:00:00 2001 From: dmaclach Date: Tue, 13 Nov 2018 20:49:19 -0800 Subject: Deprecate GTMFileSystemKqueue. (#204) You should use libdispatch with a DISPATCH_SOURCE_TYPE_VNODE source. --- Foundation/GTMFileSystemKQueueTest.m | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Foundation/GTMFileSystemKQueueTest.m') diff --git a/Foundation/GTMFileSystemKQueueTest.m b/Foundation/GTMFileSystemKQueueTest.m index 9ffc046..2dad7b7 100644 --- a/Foundation/GTMFileSystemKQueueTest.m +++ b/Foundation/GTMFileSystemKQueueTest.m @@ -20,6 +20,10 @@ #import "GTMFileSystemKQueue.h" +#pragma clang diagnostic push +// Ignore all of the deprecation warnings for GTMFileSystemKQueue +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + // Private methods of GTMFileSystemKQueue we use for some tests @interface GTMFileSystemKQueue (PrivateMethods) - (void)unregisterWithKQueue; @@ -508,3 +512,5 @@ } @end + +#pragma clang diagnostic pop -- cgit v1.2.3