You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(appstate): replace isolated deinit with nonisolated(unsafe) cleanup
The production release compiler rejects `isolated deinit` (SE-0371) as an
experimental feature and won't let it be enabled, so `swift build -c release`
(the DMG build) failed. Use a plain deinit and mark the torn-down stored
properties nonisolated(unsafe) — runtime behavior is unchanged and no
experimental feature is required.
0 commit comments