Skip to content

Commit e1d3cfc

Browse files
committed
Fix lint
1 parent ebad10a commit e1d3cfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csrc/val_graph.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,8 @@ std::string ValGraph::toString() const {
269269
ss << "IdGraph { \n";
270270
ss << "Disjoint Ids:\n"
271271
<< idGroupsString(*this, 1) << "\n\nDisjoint Expression groups:\n"
272-
<< exprGroupsString(*this, 1) << std::endl;
273-
ss << " } IdGraph\n" << std::endl;
272+
<< exprGroupsString(*this, 1) << '\n';
273+
ss << " } IdGraph\n";
274274
return ss.str();
275275
}
276276

0 commit comments

Comments
 (0)