Skip to content

Commit b8fc71c

Browse files
committed
[AST] Fix an accidental use of llvm::errs
1 parent bdd74e7 commit b8fc71c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/AST/RequirementMachine/TypeDifference.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ MutableTerm TypeDifference::getReplacementSubstitution(unsigned index) const {
6363
}
6464

6565
void TypeDifference::dump(llvm::raw_ostream &out) const {
66-
llvm::errs() << "Base term: " << BaseTerm << "\n";
67-
llvm::errs() << "LHS: " << LHS << "\n";
68-
llvm::errs() << "RHS: " << RHS << "\n";
66+
out << "Base term: " << BaseTerm << "\n";
67+
out << "LHS: " << LHS << "\n";
68+
out << "RHS: " << RHS << "\n";
6969

7070
for (const auto &pair : SameTypes) {
7171
out << "- " << getOriginalSubstitution(pair.first) << " (#";

0 commit comments

Comments
 (0)