We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08f8781 commit 6bb74abCopy full SHA for 6bb74ab
lib/AST/RequirementMachine/RewriteSystem.cpp
@@ -716,7 +716,6 @@ void RewriteSystem::dump(llvm::raw_ostream &out) const {
716
}
717
if (!WrittenRequirements.empty()) {
718
out << "Written requirements: {\n";
719
-
720
for (unsigned reqID : indices(WrittenRequirements)) {
721
out << " - ID: " << reqID << " - ";
722
const auto &requirement = WrittenRequirements[reqID];
@@ -725,6 +724,6 @@ void RewriteSystem::dump(llvm::raw_ostream &out) const {
725
724
requirement.loc.print(out, Context.getASTContext().SourceMgr);
726
out << "\n";
727
+ out << "}\n";
728
729
- out << "}\n";
730
0 commit comments