mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 12:55:40 +02:00
console reporter is now a full replacement for the basic reporter, using the new streaming interface directly
This commit is contained in:
@@ -46,6 +46,8 @@ namespace Catch {
|
||||
}
|
||||
std::string makeSectionPath( ThreadedSectionInfo const * section, std::string const& delimiter ) {
|
||||
std::string sectionPath = "'" + section->name + "'";
|
||||
|
||||
// !TBD: Do this without the assignment in the while as it causes warnings:
|
||||
while( ( section = section->parent.get() ) )
|
||||
sectionPath = "'" + section->name + "'" + delimiter + sectionPath;
|
||||
return sectionPath;
|
||||
|
Reference in New Issue
Block a user