Skip to content

Commit 4bf8496

Browse files
committed
fix indentation
1 parent bd40283 commit 4bf8496

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

lib/Sema/CSSimplify.cpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2071,14 +2071,13 @@ static bool isInPatternMatchingContext(ConstraintLocatorBuilder locator) {
20712071
path[lastIdx].is<LocatorPathElt::FunctionArgument>())
20722072
return true;
20732073

2074-
if (path.size() > 5) {
2075-
// `case .bar(_, (_, (_, (_, (let a, _), _), _))) = question`
2076-
if (path[3].is<LocatorPathElt::PatternMatch>() &&
2077-
path[4].is<LocatorPathElt::FunctionArgument>() &&
2078-
path[lastIdx].is<LocatorPathElt::TupleElement>())
2079-
return true;
2074+
if (path.size() > 5) {
2075+
// `case .bar(_, (_, (_, (_, (let a, _), _), _))) = question`
2076+
if (path[3].is<LocatorPathElt::PatternMatch>() &&
2077+
path[4].is<LocatorPathElt::FunctionArgument>() &&
2078+
path[lastIdx].is<LocatorPathElt::TupleElement>())
2079+
return true;
20802080
}
2081-
20822081
}
20832082
}
20842083

0 commit comments

Comments
 (0)