Skip to content

Commit 6e7cb1d

Browse files
authored
Source no longer requires Equatable (#1)
1 parent bc2456b commit 6e7cb1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/Normalization/Selector.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ extension TableSelector {
3535
}
3636

3737
public protocol StorageSelector: Hashable, Sendable {
38-
associatedtype Source: Equatable
38+
associatedtype Source
3939
associatedtype Storage: NormalizedStorageType
4040

4141
func select(source: consuming Source) -> Storage
4242
}
4343

4444
public struct KeyPathStorageSelector<
45-
Source: Equatable,
45+
Source,
4646
Storage: NormalizedStorageType
4747
>: StorageSelector, Equatable {
4848

@@ -61,7 +61,7 @@ public struct KeyPathStorageSelector<
6161
extension StorageSelector {
6262

6363
public static func keyPath<
64-
Source: Equatable,
64+
Source,
6565
Storage: NormalizedStorageType
6666
>
6767
(

0 commit comments

Comments
 (0)