Skip to content

Commit 77ae8d4

Browse files
author
Amritpan Kaur
committed
[CSStep] Fix closing paren indentation at end of Conjunction Step.
1 parent bee4eae commit 77ae8d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/Sema/CSStep.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -843,9 +843,6 @@ StepResult ConjunctionStep::resume(bool prevFailed) {
843843
// attempted to apply information gained from the
844844
// isolated constraint to the outer context.
845845
if (Snapshot && Snapshot->isScoped()) {
846-
if (CS.isDebugMode())
847-
getDebugLogger() << ")\n";
848-
849846
return done(/*isSuccess=*/!prevFailed);
850847
}
851848

lib/Sema/CSStep.h

+3
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,9 @@ class ConjunctionStep : public BindingStep<ConjunctionElementProducer> {
973973
auto remainingTime = OuterTimeRemaining->second;
974974
CS.Timer.emplace(anchor, CS, remainingTime);
975975
}
976+
977+
if (CS.isDebugMode())
978+
getDebugLogger() << ")\n";
976979
}
977980

978981
StepResult resume(bool prevFailed) override;

0 commit comments

Comments
 (0)