Skip to content

Commit fc04ac6

Browse files
committed
format
1 parent f34d340 commit fc04ac6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

clang/lib/Sema/SemaOverload.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11353,13 +11353,13 @@ OverloadingResult OverloadCandidateSet::BestViableFunction(Sema &S,
1135311353
bool TwoPhaseResolution =
1135411354
DeferredCandidatesCount != 0 && !ResolutionByPerfectCandidateIsDisabled;
1135511355

11356-
if(TwoPhaseResolution) {
11357-
OverloadingResult Res = BestViableFunctionImpl(S, Loc, Best);
11358-
if (Best != end() && Best->isPerfectMatch(S.Context)) {
11359-
if(!(HasDeferredTemplateConstructors &&
11360-
isa_and_nonnull<CXXConversionDecl>(Best->Function)))
11361-
return Res;
11362-
}
11356+
if (TwoPhaseResolution) {
11357+
OverloadingResult Res = BestViableFunctionImpl(S, Loc, Best);
11358+
if (Best != end() && Best->isPerfectMatch(S.Context)) {
11359+
if (!(HasDeferredTemplateConstructors &&
11360+
isa_and_nonnull<CXXConversionDecl>(Best->Function)))
11361+
return Res;
11362+
}
1136311363
}
1136411364

1136511365
InjectNonDeducedTemplateCandidates(S);

0 commit comments

Comments
 (0)