mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Fixed scope of nullable data
This commit is contained in:
parent
b9b35ef92d
commit
22b1ea6aab
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ namespace System.Reflection
|
||||||
if (genericType.UnspecializedType == typeof(Nullable<>))
|
if (genericType.UnspecializedType == typeof(Nullable<>))
|
||||||
{
|
{
|
||||||
argType = paramType;
|
argType = paramType;
|
||||||
dataPtr = ScopedAllocZero!(paramType.Size, 16);
|
dataPtr = ScopedAllocZero!::(paramType.Size, 16);
|
||||||
isValid = true;
|
isValid = true;
|
||||||
handled = true;
|
handled = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue