Skip to content

Commit 4a48610

Browse files
authored
Fixed warning for HashableWrapper (#300)
1 parent 7d06033 commit 4a48610

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ public extension ObservableValue {
3838
set { set.rawValue(value)(newValue) }
3939
}
4040

41-
private struct HashableWrapper<Value>: Hashable {
42-
let rawValue: Value
41+
private struct HashableWrapper<WrappedValue>: Hashable {
42+
let rawValue: WrappedValue
4343
static func == (lhs: Self, rhs: Self) -> Bool { false }
4444
func hash(into hasher: inout Hasher) {}
4545
}

0 commit comments

Comments
 (0)