We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b257a96 commit 4dfe312Copy full SHA for 4dfe312
ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift
@@ -401,11 +401,11 @@ public final class ViewEnvironmentUpdateObservationLifetime {
401
}
402
403
private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404
- static var needsEnvironmentUpdate = NSObject()
405
- static var needsUpdateObservers = NSObject()
406
- static var ancestorOverride = NSObject()
407
- static var descendantsOverride = NSObject()
408
- static var customizations = NSObject()
+ static var needsEnvironmentUpdate: UInt8 = 0
+ static var needsUpdateObservers: UInt8 = 0
+ static var ancestorOverride: UInt8 = 0
+ static var descendantsOverride: UInt8 = 0
+ static var customizations: UInt8 = 0
409
410
411
extension ViewEnvironmentPropagating {
0 commit comments