File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -234,21 +234,21 @@ index f39731ad7..ca6abd422 100644
234
234
+ }
235
235
+
236
236
+ 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)
238
238
+ {
239
239
+ (void) dso;
240
240
+ return __MCF_cxa_at_quick_exit(dtor, this, &__dso_handle);
241
241
+ }
242
242
+
243
243
+ int
244
- + __cxa_atexit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
244
+ + __cxa_atexit(dtor_fn dtor, void* this, void* dso)
245
245
+ {
246
246
+ (void) dso;
247
247
+ return __MCF_cxa_atexit(dtor, this, &__dso_handle);
248
248
+ }
249
249
+
250
250
+ 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)
252
252
+ {
253
253
+ (void) dso;
254
254
+ return __MCF_cxa_thread_atexit(dtor, this, &__dso_handle);
You can’t perform that action at this time.
0 commit comments