Skip to content

Commit

Permalink
Update src/coreclr/tools/Common/TypeSystem/Common/MetadataFieldLayout…
Browse files Browse the repository at this point in the history
…Algorithm.cs
  • Loading branch information
MichalStrehovsky authored and jakobbotsch committed Aug 5, 2021
1 parent 23123ae commit 2c2d996
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ public override bool ComputeIsUnsafeValueType(DefType type)
if (!fieldType.IsValueType || fieldType.IsPrimitive)
continue;

if ((DefType)fieldType).IsUnsafeValueType)
if (((DefType)fieldType).IsUnsafeValueType)
return true;
}

Expand Down

0 comments on commit 2c2d996

Please sign in to comment.