Skip to content

Commit 43e8114

Browse files
committed
patches: Update types
(cherry picked from commit 7cc1489) Signed-off-by: LIU Hao <lh_mouse@126.com>
1 parent 23ad461 commit 43e8114

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

patches/mingw-w64-10.0.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,21 +234,21 @@ index f39731ad7..ca6abd422 100644
234234
+ }
235235
+
236236
+int
237-
+__cxa_at_quick_exit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
237+
+__cxa_at_quick_exit(dtor_fn dtor, void* this, void* dso)
238238
+ {
239239
+ (void) dso;
240240
+ return __MCF_cxa_at_quick_exit(dtor, this, &__dso_handle);
241241
+ }
242242
+
243243
+int
244-
+__cxa_atexit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
244+
+__cxa_atexit(dtor_fn dtor, void* this, void* dso)
245245
+ {
246246
+ (void) dso;
247247
+ return __MCF_cxa_atexit(dtor, this, &__dso_handle);
248248
+ }
249249
+
250250
+int
251-
+__cxa_thread_atexit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
251+
+__cxa_thread_atexit(dtor_fn dtor, void* this, void* dso)
252252
+ {
253253
+ (void) dso;
254254
+ return __MCF_cxa_thread_atexit(dtor, this, &__dso_handle);

0 commit comments

Comments
 (0)