We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f95b8 commit cd76c83Copy full SHA for cd76c83
Sources/DataConnect.swift
@@ -35,8 +35,11 @@ public class DataConnect {
35
)
36
37
// Instance store uses an internal queue to protect mutable state.
38
- // So marking it as
+ #if compiler(>=6)
39
private nonisolated(unsafe) static let instanceStore = InstanceStore()
40
+ #else
41
+ private static let instanceStore = InstanceStore()
42
+ #endif
43
44
public enum EmulatorDefaults {
45
public static let host = "127.0.0.1"
0 commit comments