Skip to content

Commit 2f69b63

Browse files
authored
Merge pull request swiftlang#18007 from huonw/weird-indentation
2 parents 3bf94ab + 4faa0da commit 2f69b63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/AST/GenericSignatureBuilder.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4081,7 +4081,7 @@ auto GenericSignatureBuilder::resolve(UnresolvedType paOrT,
40814081
return ResolvedType(pa);
40824082

40834083
// Determine what kind of resolution we want.
4084-
Type type = paOrT.dyn_cast<Type>();
4084+
Type type = paOrT.dyn_cast<Type>();
40854085
ArchetypeResolutionKind resolutionKind =
40864086
ArchetypeResolutionKind::WellFormed;
40874087
if (!source.isExplicit() && source.isRecursive(type, *this))
@@ -5087,7 +5087,7 @@ ConstraintResult GenericSignatureBuilder::addSameTypeRequirementToConcrete(
50875087
ResolvedType type,
50885088
Type concrete,
50895089
const RequirementSource *source) {
5090-
auto equivClass = type.getEquivalenceClass(*this);
5090+
auto equivClass = type.getEquivalenceClass(*this);
50915091

50925092
// Record the concrete type and its source.
50935093
equivClass->concreteTypeConstraints.push_back(
@@ -6472,7 +6472,7 @@ static void computeDerivedSameTypeComponents(
64726472

64736473
// If there is a concrete type, figure out the best concrete type anchor
64746474
// per component.
6475-
auto genericParams = builder.getGenericParams();
6475+
auto genericParams = builder.getGenericParams();
64766476
for (const auto &concrete : equivClass->concreteTypeConstraints) {
64776477
// Dig out the component associated with constraint.
64786478
Type subjectType = concrete.getSubjectDependentType(genericParams);

0 commit comments

Comments
 (0)