Skip to content

Commit 6bb74ab

Browse files
committed
RequirementMachine: Fix stray } in RewriteSystem::dump()
1 parent 08f8781 commit 6bb74ab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/AST/RequirementMachine/RewriteSystem.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,6 @@ void RewriteSystem::dump(llvm::raw_ostream &out) const {
716716
}
717717
if (!WrittenRequirements.empty()) {
718718
out << "Written requirements: {\n";
719-
720719
for (unsigned reqID : indices(WrittenRequirements)) {
721720
out << " - ID: " << reqID << " - ";
722721
const auto &requirement = WrittenRequirements[reqID];
@@ -725,6 +724,6 @@ void RewriteSystem::dump(llvm::raw_ostream &out) const {
725724
requirement.loc.print(out, Context.getASTContext().SourceMgr);
726725
out << "\n";
727726
}
727+
out << "}\n";
728728
}
729-
out << "}\n";
730729
}

0 commit comments

Comments
 (0)