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:
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<>))
|
||||
{
|
||||
argType = paramType;
|
||||
dataPtr = ScopedAllocZero!(paramType.Size, 16);
|
||||
dataPtr = ScopedAllocZero!::(paramType.Size, 16);
|
||||
isValid = true;
|
||||
handled = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue