summaryrefslogtreecommitdiff
path: root/Hutch/Extensions/Foundation+Sendable.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-08-07 17:41:00 -0500
committerGitHub <[email protected]>2026-08-07 17:41:00 -0500
commitff200d21e93d6683f779fe1f3280ac8d8561d393 (patch)
treef6603518ba62134faa699d864003b90464930ab9 /Hutch/Extensions/Foundation+Sendable.swift
parent9d85bc7c154843693913bf0cc67c6e9ff0d8f897 (diff)
parent283fbf00fdffd64c924b6cb22c84e803b718f078 (diff)
downloadhutch-main.tar.gz
hutch-main.tar.bz2
hutch-main.zip
Merge pull request #39 from krazywarez/fix-actor-isolationHEADmain
Adopt Swift 6 language mode
Diffstat (limited to 'Hutch/Extensions/Foundation+Sendable.swift')
-rw-r--r--Hutch/Extensions/Foundation+Sendable.swift7
1 files changed, 7 insertions, 0 deletions
diff --git a/Hutch/Extensions/Foundation+Sendable.swift b/Hutch/Extensions/Foundation+Sendable.swift
new file mode 100644
index 0000000..9a12aa6
--- /dev/null
+++ b/Hutch/Extensions/Foundation+Sendable.swift
@@ -0,0 +1,7 @@
+import Foundation
+
+// `UserDefaults` is documented as thread-safe but is not marked `Sendable` by
+// Foundation. Hutch passes it into account sessions and the various per-account
+// stores, all of which need to cross concurrency boundaries. The retroactive
+// unchecked conformance reflects the documented thread-safety.
+extension UserDefaults: @retroactive @unchecked Sendable {}