Skip to content

Commit e337ef3

Browse files
Concurrency: fix inconsistent _asyncLet_get signatures (#4288)
1 parent 57ee54c commit e337ef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/Concurrency/AsyncLet.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ public func _asyncLetEnd(
4444
/// Wait if necessary and then project the result value of an async let
4545
@available(SwiftStdlib 5.1, *)
4646
@_silgen_name("swift_asyncLet_get")
47-
public func _asyncLet_get(_ asyncLet: Builtin.RawPointer, _ resultBuffer: Builtin.RawPointer) async -> Builtin.RawPointer
47+
public func _asyncLet_get(_ asyncLet: Builtin.RawPointer, _ resultBuffer: Builtin.RawPointer) async
4848

4949
/// Wait if necessary and then project the result value of an async let that throws
5050
@available(SwiftStdlib 5.1, *)
5151
@_silgen_name("swift_asyncLet_get_throwing")
52-
public func _asyncLet_get_throwing(_ asyncLet: Builtin.RawPointer, _ resultBuffer: Builtin.RawPointer) async throws -> Builtin.RawPointer
52+
public func _asyncLet_get_throwing(_ asyncLet: Builtin.RawPointer, _ resultBuffer: Builtin.RawPointer) async throws
5353

5454
/// Wait if necessary and then tear down the async let task
5555
@available(SwiftStdlib 5.1, *)

0 commit comments

Comments
 (0)