File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
stdlib/public/Distributed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,7 @@ static void swift_distributed_execute_target_resume(
110
110
}
111
111
112
112
SWIFT_CC (swift) SWIFT_RUNTIME_STDLIB_INTERNAL
113
- SwiftError* swift_distributed_makeDistributedTargetAccessorNotFoundError(
114
- const char *targetNameStart, size_t targetNameLength);
113
+ SwiftError* swift_distributed_makeDistributedTargetAccessorNotFoundError();
115
114
116
115
SWIFT_CC (swiftasync)
117
116
void swift_distributed_execute_target(
@@ -129,7 +128,7 @@ void swift_distributed_execute_target(
129
128
auto *accessor = findDistributedAccessor (targetNameStart, targetNameLength);
130
129
if (!accessor) {
131
130
SwiftError *error =
132
- swift_distributed_makeDistributedTargetAccessorNotFoundError (targetNameStart, targetNameLength );
131
+ swift_distributed_makeDistributedTargetAccessorNotFoundError ();
133
132
auto resumeInParent =
134
133
reinterpret_cast <TargetExecutorSignature::ContinuationType *>(
135
134
callerContext->ResumeParent );
You can’t perform that action at this time.
0 commit comments