Do not write singular characters into stream as C-strings

This commit is contained in:
Martin Hořeňovský 2019-09-06 18:29:57 +02:00
parent 6e8d769775
commit 789f3591ef
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 8 additions and 8 deletions

View File

@ -268,7 +268,7 @@ public:
}
friend auto operator << (std::ostream& os, Duration const& duration) -> std::ostream& {
return os << duration.value() << " " << duration.unitsAsString();
return os << duration.value() << ' ' << duration.unitsAsString();
}
};
} // end anon namespace
@ -300,9 +300,9 @@ public:
headerCols += Column(info.name).width(static_cast<std::size_t>(info.width - 2));
headerCols += spacer;
}
m_os << headerCols << "\n";
m_os << headerCols << '\n';
m_os << Catch::getLineOfChars<'-'>() << "\n";
m_os << Catch::getLineOfChars<'-'>() << '\n';
}
}
void close() {
@ -327,7 +327,7 @@ public:
tp.open();
if (tp.m_currentColumn == static_cast<int>(tp.m_columnInfos.size() - 1)) {
tp.m_currentColumn = -1;
tp.m_os << "\n";
tp.m_os << '\n';
}
tp.m_currentColumn++;
@ -336,15 +336,15 @@ public:
? std::string(colInfo.width - (strSize + 2), ' ')
: std::string();
if (colInfo.justification == ColumnInfo::Left)
tp.m_os << colStr << padding << " ";
tp.m_os << colStr << padding << ' ';
else
tp.m_os << padding << colStr << " ";
tp.m_os << padding << colStr << ' ';
return tp;
}
friend TablePrinter& operator << (TablePrinter& tp, RowBreak) {
if (tp.m_currentColumn > 0) {
tp.m_os << "\n";
tp.m_os << '\n';
tp.m_currentColumn = -1;
}
return tp;
@ -449,7 +449,7 @@ void ConsoleReporter::benchmarkEnded(BenchmarkStats<> const& stats) {
void ConsoleReporter::benchmarkFailed(std::string const& error) {
Colour colour(Colour::Red);
(*m_tablePrinter)
<< "Benchmark failed (" << error << ")"
<< "Benchmark failed (" << error << ')'
<< ColumnBreak() << RowBreak();
}
#endif // CATCH_CONFIG_ENABLE_BENCHMARKING