Skip to content

Commit e70d0bc

Browse files
committed
Sema: Add missing newline in debug output
1 parent 1480339 commit e70d0bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Sema/CSStep.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,10 +457,12 @@ StepResult ComponentStep::take(bool prevFailed) {
457457
}
458458

459459
auto printConstraints = [&](const ConstraintList &constraints) {
460-
for (auto &constraint : constraints)
460+
for (auto &constraint : constraints) {
461461
constraint.print(
462462
getDebugLogger().indent(CS.solverState->getCurrentIndent()),
463463
&CS.getASTContext().SourceMgr, CS.solverState->getCurrentIndent());
464+
getDebugLogger() << "\n";
465+
}
464466
};
465467

466468
// If we don't have any disjunction or type variable choices left, we're done

0 commit comments

Comments
 (0)