From adf3405e6bb6b9c649e51a5143f5bbf2410c696d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 8 Aug 2022 15:17:04 -0400 Subject: [PATCH] Be overt about performance side effect. --- .../Mac/Clock SignalTests/NSData+dataWithContentsOfGZippedFile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/OSBindings/Mac/Clock SignalTests/NSData+dataWithContentsOfGZippedFile.h b/OSBindings/Mac/Clock SignalTests/NSData+dataWithContentsOfGZippedFile.h index 49ee06dde..068fb9a50 100644 --- a/OSBindings/Mac/Clock SignalTests/NSData+dataWithContentsOfGZippedFile.h +++ b/OSBindings/Mac/Clock SignalTests/NSData+dataWithContentsOfGZippedFile.h @@ -12,6 +12,7 @@ NS_ASSUME_NONNULL_BEGIN @interface NSData (dataWithContentsOfGZippedFile) +/// Performs an in-memory decompression of the named file, returning it as ephemeral data. + (instancetype)dataWithContentsOfGZippedFile:(NSString *)path; @end