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 17bf45a commit 5a462c6Copy full SHA for 5a462c6
Sources/Basic/Condition.swift
@@ -10,11 +10,6 @@
10
11
import Foundation
12
13
-// FIXME: Temporary compatibility shims.
14
-#if !os(macOS)
15
-private typealias NSCondition = Foundation.Condition
16
-#endif
17
-
18
/// A simple condition wrapper.
19
public struct Condition {
20
private let _condition = NSCondition()
Sources/Basic/Lock.swift
-private typealias NSLock = Foundation.Lock
/// A simple lock wrapper.
public struct Lock {
private var _lock = NSLock()
0 commit comments