mirror of
https://github.com/catchorg/Catch2.git
synced 2025-10-21 01:15:39 +02:00
initial draft of changes to support Borland c++ Builder 5 / free compiler 5.5
This commit is contained in:
@@ -71,7 +71,7 @@ namespace Catch {
|
||||
if( counts.passed )
|
||||
m_config.stream() << counts.failed << " of " << counts.total() << " " << label << "s failed";
|
||||
else
|
||||
m_config.stream() << ( counts.failed > 1 ? allPrefix : "" ) << pluralise( counts.failed, label ) << " failed";
|
||||
m_config.stream() << ( counts.failed > 1 ? allPrefix : std::string() ) << pluralise( counts.failed, label ) << " failed";
|
||||
}
|
||||
|
||||
void ReportCounts( const Totals& totals, const std::string& allPrefix = "All " ) {
|
||||
|
Reference in New Issue
Block a user