if string has a : in first line will set indent to follow it on subsequent lines
| 16330 | // if string has a : in first line will set indent to follow it on |
| 16331 | // subsequent lines |
| 16332 | void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) { |
| 16333 | std::size_t i = _string.find(": "); |
| 16334 | if (i != std::string::npos) |
| 16335 | i += 2; |
| 16336 | else |
| 16337 | i = 0; |
| 16338 | stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; |
| 16339 | } |
| 16340 | |
| 16341 | struct SummaryColumn { |
| 16342 |
nothing calls this directly
no test coverage detected