if string has a : in first line will set indent to follow it on subsequent lines
| 13586 | // if string has a : in first line will set indent to follow it on |
| 13587 | // subsequent lines |
| 13588 | void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) { |
| 13589 | std::size_t i = _string.find(": "); |
| 13590 | if (i != std::string::npos) |
| 13591 | i += 2; |
| 13592 | else |
| 13593 | i = 0; |
| 13594 | stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; |
| 13595 | } |
| 13596 | |
| 13597 | struct SummaryColumn { |
| 13598 |
nothing calls this directly
no test coverage detected