File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
stdlib/public/Synchronization/Atomics
test/stdlib/Synchronization/Atomics Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
//===----------------------------------------------------------------------===//
2
2
//
3
- // This source file is part of the Swift Atomics open source project
3
+ // This source file is part of the Swift.org open source project
4
4
//
5
- // Copyright (c) 2023 Apple Inc. and the Swift project authors
5
+ // Copyright (c) 2023-2025 Apple Inc. and the Swift project authors
6
6
// Licensed under Apache License v2.0 with Runtime Library Exception
7
7
//
8
8
// See https://swift.org/LICENSE.txt for license information
@@ -183,9 +183,9 @@ extension WordPair: Hashable {
183
183
}
184
184
}
185
185
186
- @available ( SwiftStdlib 6 . 2 , * )
186
+ @available ( SwiftStdlib 6 . 1 , * )
187
187
extension WordPair : Comparable {
188
- @available ( SwiftStdlib 6 . 2 , * )
188
+ @available ( SwiftStdlib 6 . 1 , * )
189
189
@_alwaysEmitIntoClient
190
190
@_transparent
191
191
public static func < ( lhs: WordPair , rhs: WordPair ) -> Bool {
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ suite.test("basics") {
49
49
50
50
} // if #available(SwiftStdlib 6.0, *)
51
51
52
- if #available( SwiftStdlib 6 . 2 , * ) {
52
+ if #available( SwiftStdlib 6 . 1 , * ) {
53
53
suite. test ( " comparable " ) {
54
54
let c0 = WordPair ( first: 0 , second: 0 )
55
55
let c1 = WordPair ( first: 1 , second: 0 )
@@ -65,6 +65,6 @@ suite.test("comparable") {
65
65
expectTrue ( c4 < c5)
66
66
expectFalse ( c5 < c4)
67
67
}
68
- } // if #available(SwiftStdlib 6.2 , *)
68
+ } // if #available(SwiftStdlib 6.1 , *)
69
69
70
70
runAllTests ( )
You can’t perform that action at this time.
0 commit comments