1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed scope of nullable data

This commit is contained in:
Brian Fiete 2022-03-01 13:19:57 -08:00
parent b9b35ef92d
commit 22b1ea6aab

View file

@ -619,7 +619,7 @@ namespace System.Reflection
if (genericType.UnspecializedType == typeof(Nullable<>))
{
argType = paramType;
dataPtr = ScopedAllocZero!(paramType.Size, 16);
dataPtr = ScopedAllocZero!::(paramType.Size, 16);
isValid = true;
handled = true;
}