File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
stdlib/public/Concurrency Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ struct AsyncContinuationTypeImpl<
214214 AsyncSignature<void (ArgTys...), /* throws=*/ true >> {
215215
216216 using type = SWIFT_CC(swiftasync) void (SWIFT_ASYNC_CONTEXT AsyncContext *,
217- SWIFT_CONTEXT void *);
217+ SWIFT_CONTEXT SwiftError *);
218218};
219219
220220template <class ... ArgTys>
Original file line number Diff line number Diff line change @@ -1709,7 +1709,8 @@ static DistributedAccessorSignature::ContinuationType
17091709
17101710SWIFT_CC (swiftasync)
17111711static void ::swift_distributed_execute_target_resume(
1712- SWIFT_ASYNC_CONTEXT AsyncContext *context, SWIFT_CONTEXT void *error) {
1712+ SWIFT_ASYNC_CONTEXT AsyncContext *context,
1713+ SWIFT_CONTEXT SwiftError *error) {
17131714 auto parentCtx = context->Parent ;
17141715 auto resumeInParent =
17151716 reinterpret_cast <TargetExecutorSignature::ContinuationType *>(
You can’t perform that action at this time.
0 commit comments