mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-30 19:57:10 +01:00 
			
		
		
		
	Do not write singular characters into stream as C-strings
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Martin Hořeňovský
					Martin Hořeňovský