From ad1dcdc0e165b639a2a8916c624ea03d7feac27d Mon Sep 17 00:00:00 2001
From: lpw <812862340@qq.com>
Date: Tue, 01 Jul 2025 15:29:08 +0800
Subject: [PATCH] 提交版本 4.5.0

---
 frameworks/GoogleUtilities.xcframework/macos-arm64_x86_64/GoogleUtilities.framework/Versions/A/Headers/GULOriginalIMPConvenienceMacros.h |   62 +++++++++++++++---------------
 1 files changed, 31 insertions(+), 31 deletions(-)

diff --git a/frameworks/GoogleUtilities.xcframework/macos-arm64_x86_64/GoogleUtilities.framework/Versions/A/Headers/GULOriginalIMPConvenienceMacros.h b/frameworks/GoogleUtilities.xcframework/macos-arm64_x86_64/GoogleUtilities.framework/Versions/A/Headers/GULOriginalIMPConvenienceMacros.h
index c340f85..18b7b58 100644
--- a/frameworks/GoogleUtilities.xcframework/macos-arm64_x86_64/GoogleUtilities.framework/Versions/A/Headers/GULOriginalIMPConvenienceMacros.h
+++ b/frameworks/GoogleUtilities.xcframework/macos-arm64_x86_64/GoogleUtilities.framework/Versions/A/Headers/GULOriginalIMPConvenienceMacros.h
@@ -33,7 +33,7 @@
  *  @param __originalIMP The original IMP.
  */
 #define GUL_INVOKE_ORIGINAL_IMP0(__receivingObject, __swizzledSEL, __returnType, __originalIMP) \
-  ((__returnType(*)(id, SEL))__originalIMP)(__receivingObject, __swizzledSEL)
+  ((__returnType (*)(id, SEL))__originalIMP)(__receivingObject, __swizzledSEL)
 
 /**
  *  Invokes original IMP when the original selector takes 1 argument.
@@ -44,10 +44,10 @@
  *  @param __originalIMP The original IMP.
  *  @param __arg1 The first argument.
  */
-#define GUL_INVOKE_ORIGINAL_IMP1(__receivingObject, __swizzledSEL, __returnType, __originalIMP,   \
-                                 __arg1)                                                          \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1)))__originalIMP)(__receivingObject, __swizzledSEL, \
-                                                                __arg1)
+#define GUL_INVOKE_ORIGINAL_IMP1(__receivingObject, __swizzledSEL, __returnType, __originalIMP,    \
+                                 __arg1)                                                           \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1)))__originalIMP)(__receivingObject, __swizzledSEL, \
+                                                                 __arg1)
 
 /**
  *  Invokes original IMP when the original selector takes 2 arguments.
@@ -61,7 +61,7 @@
  */
 #define GUL_INVOKE_ORIGINAL_IMP2(__receivingObject, __swizzledSEL, __returnType, __originalIMP, \
                                  __arg1, __arg2)                                                \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2)))__originalIMP)(            \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2)))__originalIMP)(           \
       __receivingObject, __swizzledSEL, __arg1, __arg2)
 
 /**
@@ -75,11 +75,11 @@
  *  @param __arg2 The second argument.
  *  @param __arg3 The third argument.
  */
-#define GUL_INVOKE_ORIGINAL_IMP3(__receivingObject, __swizzledSEL, __returnType, __originalIMP,  \
-                                 __arg1, __arg2, __arg3)                                         \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2),                             \
-                    __typeof__(__arg3)))__originalIMP)(__receivingObject, __swizzledSEL, __arg1, \
-                                                       __arg2, __arg3)
+#define GUL_INVOKE_ORIGINAL_IMP3(__receivingObject, __swizzledSEL, __returnType, __originalIMP,   \
+                                 __arg1, __arg2, __arg3)                                          \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2),                             \
+                     __typeof__(__arg3)))__originalIMP)(__receivingObject, __swizzledSEL, __arg1, \
+                                                        __arg2, __arg3)
 
 /**
  *  Invokes original IMP when the original selector takes 4 arguments.
@@ -93,11 +93,11 @@
  *  @param __arg3 The third argument.
  *  @param __arg4 The fourth argument.
  */
-#define GUL_INVOKE_ORIGINAL_IMP4(__receivingObject, __swizzledSEL, __returnType, __originalIMP,  \
-                                 __arg1, __arg2, __arg3, __arg4)                                 \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),         \
-                    __typeof__(__arg4)))__originalIMP)(__receivingObject, __swizzledSEL, __arg1, \
-                                                       __arg2, __arg3, __arg4)
+#define GUL_INVOKE_ORIGINAL_IMP4(__receivingObject, __swizzledSEL, __returnType, __originalIMP,   \
+                                 __arg1, __arg2, __arg3, __arg4)                                  \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),         \
+                     __typeof__(__arg4)))__originalIMP)(__receivingObject, __swizzledSEL, __arg1, \
+                                                        __arg2, __arg3, __arg4)
 
 /**
  *  Invokes original IMP when the original selector takes 5 arguments.
@@ -114,8 +114,8 @@
  */
 #define GUL_INVOKE_ORIGINAL_IMP5(__receivingObject, __swizzledSEL, __returnType, __originalIMP, \
                                  __arg1, __arg2, __arg3, __arg4, __arg5)                        \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),        \
-                    __typeof__(__arg4), __typeof__(__arg5)))__originalIMP)(                     \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),       \
+                     __typeof__(__arg4), __typeof__(__arg5)))__originalIMP)(                    \
       __receivingObject, __swizzledSEL, __arg1, __arg2, __arg3, __arg4, __arg5)
 
 /**
@@ -132,10 +132,10 @@
  *  @param __arg5 The fifth argument.
  *  @param __arg6 The sixth argument.
  */
-#define GUL_INVOKE_ORIGINAL_IMP6(__receivingObject, __swizzledSEL, __returnType, __originalIMP, \
-                                 __arg1, __arg2, __arg3, __arg4, __arg5, __arg6)                \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),        \
-                    __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6)))__originalIMP)( \
+#define GUL_INVOKE_ORIGINAL_IMP6(__receivingObject, __swizzledSEL, __returnType, __originalIMP,  \
+                                 __arg1, __arg2, __arg3, __arg4, __arg5, __arg6)                 \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),        \
+                     __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6)))__originalIMP)( \
       __receivingObject, __swizzledSEL, __arg1, __arg2, __arg3, __arg4, __arg5, __arg6)
 
 /**
@@ -155,9 +155,9 @@
  */
 #define GUL_INVOKE_ORIGINAL_IMP7(__receivingObject, __swizzledSEL, __returnType, __originalIMP, \
                                  __arg1, __arg2, __arg3, __arg4, __arg5, __arg6, __arg7)        \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),        \
-                    __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6),                 \
-                    __typeof__(__arg7)))__originalIMP)(                                         \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),       \
+                     __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6),                \
+                     __typeof__(__arg7)))__originalIMP)(                                        \
       __receivingObject, __swizzledSEL, __arg1, __arg2, __arg3, __arg4, __arg5, __arg6, __arg7)
 
 /**
@@ -178,9 +178,9 @@
  */
 #define GUL_INVOKE_ORIGINAL_IMP8(__receivingObject, __swizzledSEL, __returnType, __originalIMP,  \
                                  __arg1, __arg2, __arg3, __arg4, __arg5, __arg6, __arg7, __arg8) \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),         \
-                    __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6),                  \
-                    __typeof__(__arg7), __typeof__(__arg8)))__originalIMP)(                      \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),        \
+                     __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6),                 \
+                     __typeof__(__arg7), __typeof__(__arg8)))__originalIMP)(                     \
       __receivingObject, __swizzledSEL, __arg1, __arg2, __arg3, __arg4, __arg5, __arg6, __arg7,  \
       __arg8)
 
@@ -204,9 +204,9 @@
 #define GUL_INVOKE_ORIGINAL_IMP9(__receivingObject, __swizzledSEL, __returnType, __originalIMP,  \
                                  __arg1, __arg2, __arg3, __arg4, __arg5, __arg6, __arg7, __arg8, \
                                  __arg9)                                                         \
-  ((__returnType(*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),         \
-                    __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6),                  \
-                    __typeof__(__arg7), __typeof__(__arg8), __typeof__(__arg9)))__originalIMP)(  \
+  ((__returnType (*)(id, SEL, __typeof__(__arg1), __typeof__(__arg2), __typeof__(__arg3),        \
+                     __typeof__(__arg4), __typeof__(__arg5), __typeof__(__arg6),                 \
+                     __typeof__(__arg7), __typeof__(__arg8), __typeof__(__arg9)))__originalIMP)( \
       __receivingObject, __swizzledSEL, __arg1, __arg2, __arg3, __arg4, __arg5, __arg6, __arg7,  \
       __arg8, __arg9)
 

--
Gitblit v1.8.0