Remove `Bindable` `DynamicProperty` inheritance. (#46)

This commit is contained in:
Thomas Grapperon 2022-12-05 17:56:55 -03:00 committed by GitHub
parent c374e21e19
commit a4a84e387c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ where ModelValue.Value == ViewValue.Value, ModelValue.Value: Equatable {
} }
} }
public protocol _Bindable: DynamicProperty { public protocol _Bindable {
associatedtype Value associatedtype Value
var wrappedValue: Value { get nonmutating set } var wrappedValue: Value { get nonmutating set }
} }