Use newline instead of endl, for fewer stream flushes

This commit is contained in:
Wilson Snyder
2023-11-24 11:45:52 -05:00
parent fae7f11222
commit 58d9a5ebac
11 changed files with 57 additions and 57 deletions
+1 -1
View File
@@ -416,5 +416,5 @@ void V3Graph::dumpDotFile(const string& filename, bool colorAsSubgraph) const {
*logp << "}\n";
logp->close();
cout << "dot -Tpdf -o ~/a.pdf " << filename << endl;
cout << "dot -Tpdf -o ~/a.pdf " << filename << "\n";
}