Skip to content

Commit 92153b0

Browse files
committed
Merge with change introduced by dotnet#97590
1 parent e3e8cd6 commit 92153b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/System.Private.CoreLib/src/System/Runtime/CompilerServices/RuntimeHelpers.CoreCLR.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ internal unsafe struct MethodTableAuxiliaryData
653653
[FieldOffset(0)]
654654
private uint Flags;
655655

656-
private const uint enum_flag_CanCompareBitsOrUseFastGetHashCode = 0x0001; // Is any field type or sub field type overrode Equals or GetHashCode
656+
private const uint enum_flag_CanCompareBitsOrUseFastGetHashCode = 0x0400; // Is any field type or sub field type overrode Equals or GetHashCode
657657
private const uint enum_flag_HasCheckedCanCompareBitsOrUseFastGetHashCode = 0x0002; // Whether we have checked the overridden Equals or GetHashCode
658658

659659
public bool HasCheckedCanCompareBitsOrUseFastGetHashCode => (Flags & enum_flag_HasCheckedCanCompareBitsOrUseFastGetHashCode) != 0;

0 commit comments

Comments
 (0)