Skip to content

Commit

Permalink
Resolved Swift 5.9 compilation warning related to UnsafeRawPointer ob…
Browse files Browse the repository at this point in the history
…ject conversion (#243)
  • Loading branch information
robmaceachern authored Aug 30, 2023
1 parent b257a96 commit 4dfe312
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift
Original file line number Diff line number Diff line change
Expand Up @@ -401,11 +401,11 @@ public final class ViewEnvironmentUpdateObservationLifetime {
}

private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
static var needsEnvironmentUpdate = NSObject()
static var needsUpdateObservers = NSObject()
static var ancestorOverride = NSObject()
static var descendantsOverride = NSObject()
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
}

extension ViewEnvironmentPropagating {
Expand Down

0 comments on commit 4dfe312

Please sign in to comment.