We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c977c commit bc32046Copy full SHA for bc32046
Packages/com.unity.inputsystem/InputSystem/Actions/InputActionState.cs
@@ -4143,16 +4143,13 @@ public struct UnmanagedMemory : IDisposable
4143
4144
public ActionMapIndices* mapIndices;
4145
4146
- // This is Anthony's version of block allocation from a blob
4147
- private byte* AllocFromBlob(ref byte* top, int size)
+ private static byte* AllocFromBlob(ref byte* top, int size)
4148
{
4149
if (size == 0)
4150
return null;
4151
4152
var allocation = top;
4153
-
4154
top += size;
4155
4156
return allocation;
4157
}
4158
0 commit comments