From 1178266bed9f244671ebcb4e9624a01ce0d58097 Mon Sep 17 00:00:00 2001 From: lpw Date: Tue, 18 Mar 2025 09:04:04 +0800 Subject: [PATCH] 提交 4.4.0 --- frameworks/GoogleUtilities.xcframework/ios-arm64/GoogleUtilities.framework/Headers/GULNSData+zlib.h | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frameworks/GoogleUtilities.xcframework/ios-arm64/GoogleUtilities.framework/Headers/GULNSData+zlib.h b/frameworks/GoogleUtilities.xcframework/ios-arm64/GoogleUtilities.framework/Headers/GULNSData+zlib.h index 36f94a7..f195d57 100644 --- a/frameworks/GoogleUtilities.xcframework/ios-arm64/GoogleUtilities.framework/Headers/GULNSData+zlib.h +++ b/frameworks/GoogleUtilities.xcframework/ios-arm64/GoogleUtilities.framework/Headers/GULNSData+zlib.h @@ -14,6 +14,8 @@ #import <Foundation/Foundation.h> +NS_ASSUME_NONNULL_BEGIN + /// This is a copy of Google Toolbox for Mac library to avoid creating an extra framework. // NOTE: For 64bit, none of these apis handle input sizes >32bits, they will return nil when given @@ -24,11 +26,11 @@ /// Returns an data as the result of decompressing the payload of |data|.The data to decompress must /// be a gzipped payloads. -+ (NSData *)gul_dataByInflatingGzippedData:(NSData *)data error:(NSError **)error; ++ (nullable NSData *)gul_dataByInflatingGzippedData:(NSData *)data error:(NSError **)error; /// Returns an compressed data with the result of gzipping the payload of |data|. Uses the default /// compression level. -+ (NSData *)gul_dataByGzippingData:(NSData *)data error:(NSError **)error; ++ (nullable NSData *)gul_dataByGzippingData:(NSData *)data error:(NSError **)error; FOUNDATION_EXPORT NSString *const GULNSDataZlibErrorDomain; FOUNDATION_EXPORT NSString *const GULNSDataZlibErrorKey; // NSNumber @@ -47,3 +49,5 @@ }; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0