From c5779233a7fd245149ae73578164248391971c86 Mon Sep 17 00:00:00 2001 From: Mark Johnson Date: Wed, 4 Sep 2024 10:32:26 -0400 Subject: [PATCH] Fixed warning for HashableWrapper --- .../Sources/ObservableValue+Binding.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift b/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift index 8ae1d6f57..18b791767 100644 --- a/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift +++ b/WorkflowSwiftUIExperimental/Sources/ObservableValue+Binding.swift @@ -38,8 +38,8 @@ public extension ObservableValue { set { set.rawValue(value)(newValue) } } - private struct HashableWrapper: Hashable { - let rawValue: Value + private struct HashableWrapper: Hashable { + let rawValue: WrappedValue static func == (lhs: Self, rhs: Self) -> Bool { false } func hash(into hasher: inout Hasher) {} }