mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Revert "[Concurrency] Add underscore prefixes for not yet official API."
This commit is contained in:
committed by
GitHub
parent
3ec3421987
commit
28732f4a8b
@@ -515,7 +515,7 @@ Type SILGenModule::getConfiguredExecutorFactory() {
|
||||
auto &ctx = getASTContext();
|
||||
|
||||
// Look in the main module for a typealias
|
||||
Type factory = ctx.getNamedSwiftType(ctx.MainModule, "_DefaultExecutorFactory");
|
||||
Type factory = ctx.getNamedSwiftType(ctx.MainModule, "DefaultExecutorFactory");
|
||||
|
||||
// If we don't find it, fall back to _Concurrency.PlatformExecutorFactory
|
||||
if (!factory)
|
||||
@@ -531,7 +531,7 @@ Type SILGenModule::getDefaultExecutorFactory() {
|
||||
if (!module)
|
||||
return Type();
|
||||
|
||||
return ctx.getNamedSwiftType(module, "_DefaultExecutorFactory");
|
||||
return ctx.getNamedSwiftType(module, "DefaultExecutorFactory");
|
||||
}
|
||||
|
||||
ProtocolConformance *SILGenModule::getNSErrorConformanceToError() {
|
||||
|
||||
Reference in New Issue
Block a user