Skip to content

Commit c54b2fb

Browse files
committed
fix
1 parent 399a160 commit c54b2fb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
using System.Diagnostics.CodeAnalysis;
2+
13
namespace HydraScript.Domain.IR.Types;
24

35
public readonly ref struct CommutativeTypeEqualityComparer : IEqualityComparer<Type>
46
{
57
public bool Equals(Type? x, Type? y) =>
68
x?.Equals(y) != false || y?.Equals(x) != false;
79

10+
[ExcludeFromCodeCoverage]
811
public int GetHashCode(Type obj) => obj.GetHashCode();
912
}

0 commit comments

Comments
 (0)