We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9185ed commit 4e17de0Copy full SHA for 4e17de0
1 file changed
BeefLibs/corlib/src/Internal.bf
@@ -32,7 +32,7 @@ namespace System
32
[CRepr]
33
struct VarArgs
34
{
35
-#if BF_PLATFORM_WINDOWS || BF_PLATFORM_WASM
+#if BF_PLATFORM_WINDOWS || BF_PLATFORM_WASM || (BF_PLATFORM_MACOS && BF_MACHINE_AARCH64)
36
void* mVAList;
37
#else
38
int[5] mVAList; // Conservative size for va_list
@@ -67,7 +67,7 @@ namespace System
67
68
public void* ToVAList() mut
69
70
71
return mVAList;
72
73
return &mVAList;
0 commit comments