We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee4eae commit 77ae8d4Copy full SHA for 77ae8d4
lib/Sema/CSStep.cpp
@@ -843,9 +843,6 @@ StepResult ConjunctionStep::resume(bool prevFailed) {
843
// attempted to apply information gained from the
844
// isolated constraint to the outer context.
845
if (Snapshot && Snapshot->isScoped()) {
846
- if (CS.isDebugMode())
847
- getDebugLogger() << ")\n";
848
-
849
return done(/*isSuccess=*/!prevFailed);
850
}
851
lib/Sema/CSStep.h
@@ -973,6 +973,9 @@ class ConjunctionStep : public BindingStep<ConjunctionElementProducer> {
973
auto remainingTime = OuterTimeRemaining->second;
974
CS.Timer.emplace(anchor, CS, remainingTime);
975
976
+
977
+ if (CS.isDebugMode())
978
+ getDebugLogger() << ")\n";
979
980
981
StepResult resume(bool prevFailed) override;
0 commit comments