From 90fe9653be2c0a4c677d8711645558b667fd108a Mon Sep 17 00:00:00 2001 From: Muukii Date: Thu, 13 Feb 2025 11:05:21 +0900 Subject: [PATCH] Patch --- Sources/Normalization/Selector.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/Normalization/Selector.swift b/Sources/Normalization/Selector.swift index e141454..dcaa21e 100644 --- a/Sources/Normalization/Selector.swift +++ b/Sources/Normalization/Selector.swift @@ -35,14 +35,14 @@ extension TableSelector { } public protocol StorageSelector: Hashable, Sendable { - associatedtype Source: Equatable + associatedtype Source associatedtype Storage: NormalizedStorageType func select(source: consuming Source) -> Storage } public struct KeyPathStorageSelector< - Source: Equatable, + Source, Storage: NormalizedStorageType >: StorageSelector, Equatable { @@ -61,7 +61,7 @@ public struct KeyPathStorageSelector< extension StorageSelector { public static func keyPath< - Source: Equatable, + Source, Storage: NormalizedStorageType > (