Skip to content
Snippets Groups Projects
Commit f1b921e7 authored by James Goppert's avatar James Goppert
Browse files

Changes from ends s to flush to avoid character.

parent 2ce0174a
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ std::ostream &operator<<( std::ostream &out, const std::vector< std::vector<doub
}
else out << ",";
}
out << std::ends;
out << std::flush;
}
}
......@@ -157,7 +157,7 @@ std::ostream &operator<<( std::ostream &out, const std::vector<double> &vec )
if ( i==nI-1 ) out << "]";
else out << ";\n";
}
out << std::ends;
out << std::flush;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment