Skip to content

Commit

Permalink
xglobals: Backport more
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Oct 31, 2024
1 parent 3cd7330 commit 397a7d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mcfgthread/xglobals.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,10 @@ __MCF_invoke_cxa_dtor(__MCF_cxa_dtor_any_ __dtor, void* __arg)
/* This works on x86_64 and ARM64. */
__MCF_ALWAYS_INLINE
void
__MCF_invoke_cxa_dtor(__MCF_cxa_dtor_cdecl* __dtor, void* __arg)
__MCF_invoke_cxa_dtor(__MCF_cxa_dtor_any_ __dtor, void* __arg)
{
(*__dtor) (__arg);
(*(__dtor.__cdecl_ptr)) (__arg);

}
#endif

Expand Down

0 comments on commit 397a7d0

Please sign in to comment.