We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65b89a6 commit 2cab004Copy full SHA for 2cab004
Orm/Xtensive.Orm/Tuples/Packed/TupleLayout.cs
@@ -58,7 +58,7 @@ private sealed class TypeReferenceEqualityComparer : IEqualityComparer<Type>
58
{
59
public static readonly TypeReferenceEqualityComparer Instance = new();
60
public bool Equals(Type x, Type y) => ReferenceEquals(x, y);
61
- public int GetHashCode(Type obj) => obj.MetadataToken ^ obj.GetHashCode();
+ public int GetHashCode(Type obj) => obj.GetHashCode();
62
}
63
64
private static readonly Dictionary<Type, ValueFieldAccessor> TypeToAccessor = new(TypeReferenceEqualityComparer.Instance)
0 commit comments