Skip to content

Commit 802f836

Browse files
committed
Update EquatableArray.cs
1 parent 0718999 commit 802f836

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Equatable.SourceGenerator/Models/EquatableArray.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
using System.Collections;
2+
using System.Diagnostics.CodeAnalysis;
23

34
namespace Equatable.SourceGenerator.Models;
45

6+
[ExcludeFromCodeCoverage]
57
public readonly struct EquatableArray<T>(T[] array) : IEquatable<EquatableArray<T>>, IEnumerable<T>
68
where T : IEquatable<T>
79
{

0 commit comments

Comments
 (0)