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<
214
214
AsyncSignature<void (ArgTys...), /* throws=*/ true >> {
215
215
216
216
using type = SWIFT_CC(swiftasync) void (SWIFT_ASYNC_CONTEXT AsyncContext *,
217
- SWIFT_CONTEXT void *);
217
+ SWIFT_CONTEXT SwiftError *);
218
218
};
219
219
220
220
template <class ... ArgTys>
Original file line number Diff line number Diff line change @@ -1709,7 +1709,8 @@ static DistributedAccessorSignature::ContinuationType
1709
1709
1710
1710
SWIFT_CC (swiftasync)
1711
1711
static 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) {
1713
1714
auto parentCtx = context->Parent ;
1714
1715
auto resumeInParent =
1715
1716
reinterpret_cast <TargetExecutorSignature::ContinuationType *>(
You can’t perform that action at this time.
0 commit comments