Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-Authored-By: Thomas Grützmacher <thomas.gruetzmacher@kit.edu>
  • Loading branch information
upsj and Thomas Grützmacher committed Dec 9, 2019
1 parent 86591a5 commit 1a7acad
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/test/utils/assertions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,10 @@ void print_componentwise_error(Ostream &os, const MatrixData1 &first,
template <typename Ostream, typename Iterator>
void print_columns(Ostream &os, const Iterator &begin, const Iterator &end)
{
os << "\t";
for (auto it = begin; it != end; ++it) {
os << it->column << "\t";
os << '\t' << it->column;
}
os << "\n";
os << '\n';
}


Expand Down

0 comments on commit 1a7acad

Please sign in to comment.