File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2834,7 +2834,7 @@ CanSILFunctionType swift::getNativeSILFunctionType(
2834
2834
}
2835
2835
2836
2836
namespace {
2837
- struct LocalArchetypeRequirementCollector {
2837
+ struct OldLocalArchetypeRequirementCollector {
2838
2838
const ASTContext &Context;
2839
2839
unsigned Depth;
2840
2840
@@ -2853,7 +2853,7 @@ struct LocalArchetypeRequirementCollector {
2853
2853
// / The set of element environments we've processed.
2854
2854
llvm::SmallPtrSet<GenericEnvironment*, 4 > ElementEnvs;
2855
2855
2856
- LocalArchetypeRequirementCollector (const ASTContext &ctx, unsigned depth)
2856
+ OldLocalArchetypeRequirementCollector (const ASTContext &ctx, unsigned depth)
2857
2857
: Context(ctx), Depth(depth) {}
2858
2858
2859
2859
void collect (CanLocalArchetypeType archetype) {
@@ -3023,7 +3023,7 @@ buildThunkSignature(SILFunction *fn,
3023
3023
}
3024
3024
3025
3025
// Add new generic parameters to replace the local archetypes.
3026
- LocalArchetypeRequirementCollector collector (ctx, depth);
3026
+ OldLocalArchetypeRequirementCollector collector (ctx, depth);
3027
3027
3028
3028
for (auto archetype : localArchetypes) {
3029
3029
collector.collect (archetype);
You can’t perform that action at this time.
0 commit comments