if string has a : in first line will set indent to follow it on subsequent lines
| 12068 | // if string has a : in first line will set indent to follow it on |
| 12069 | // subsequent lines |
| 12070 | void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) { |
| 12071 | std::size_t i = _string.find(": "); |
| 12072 | if (i != std::string::npos) |
| 12073 | i += 2; |
| 12074 | else |
| 12075 | i = 0; |
| 12076 | stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; |
| 12077 | } |
| 12078 | |
| 12079 | struct SummaryColumn { |
| 12080 |
nothing calls this directly
no test coverage detected