Skip to content

Commit 3fdcb49

Browse files
nickolas-pohiletsktoso
authored andcommitted
Use concrete SwiftStdlib version
1 parent ee2e86c commit 3fdcb49

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

stdlib/public/Concurrency/AsyncStream.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,17 +475,17 @@ extension AsyncStream: @unchecked Sendable where Element: Sendable { }
475475
@available(SwiftStdlib 5.1, *)
476476
extension AsyncStream.Continuation.YieldResult: Sendable where Element: Sendable { }
477477

478-
@available(SwiftStdlib 9999, *)
478+
@available(SwiftStdlib 6.2, *)
479479
extension AsyncStream.Continuation: Hashable {
480-
@available(SwiftStdlib 9999, *)
480+
@available(SwiftStdlib 6.2, *)
481481
public func hash(into hasher: inout Hasher) {
482482
return hasher.combine(ObjectIdentifier(storage))
483483
}
484-
@available(SwiftStdlib 9999, *)
484+
@available(SwiftStdlib 6.2, *)
485485
public var hashValue: Int {
486486
return _hashValue(for: self)
487487
}
488-
@available(SwiftStdlib 9999, *)
488+
@available(SwiftStdlib 6.2, *)
489489
public static func == (lhs: Self, rhs: Self) -> Bool {
490490
return lhs.storage === rhs.storage
491491
}

stdlib/public/Concurrency/AsyncThrowingStream.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -521,17 +521,17 @@ extension AsyncThrowingStream: @unchecked Sendable where Element: Sendable { }
521521
@available(SwiftStdlib 5.1, *)
522522
extension AsyncThrowingStream.Continuation.YieldResult: Sendable where Element: Sendable { }
523523

524-
@available(SwiftStdlib 9999, *)
524+
@available(SwiftStdlib 6.2, *)
525525
extension AsyncThrowingStream.Continuation: Hashable {
526-
@available(SwiftStdlib 9999, *)
526+
@available(SwiftStdlib 6.2, *)
527527
public func hash(into hasher: inout Hasher) {
528528
return hasher.combine(ObjectIdentifier(storage))
529529
}
530-
@available(SwiftStdlib 9999, *)
530+
@available(SwiftStdlib 6.2, *)
531531
public var hashValue: Int {
532532
return _hashValue(for: self)
533533
}
534-
@available(SwiftStdlib 9999, *)
534+
@available(SwiftStdlib 6.2, *)
535535
public static func == (lhs: Self, rhs: Self) -> Bool {
536536
return lhs.storage === rhs.storage
537537
}

0 commit comments

Comments
 (0)