Skip to content

Commit 6f93e78

Browse files
committed
wip
1 parent cfea370 commit 6f93e78

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

[email protected]

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ let package = Package(
6060
"ComposableArchitecture"
6161
],
6262
swiftSettings: [
63-
.enableExperimentalFeature("StrictConcurrency")
63+
//.enableExperimentalFeature("StrictConcurrency")
6464
]
6565
),
6666
.macro(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@MainActor(unsafe)
2+
func assumeMainActorIsolated<T>(
3+
_ operation: @MainActor () throws -> T,
4+
file: StaticString = #fileID,
5+
line: UInt = #line
6+
) rethrows -> T {
7+
try operation()
8+
}

0 commit comments

Comments
 (0)