if string has a : in first line will set indent to follow it on subsequent lines
| 11966 | // if string has a : in first line will set indent to follow it on |
| 11967 | // subsequent lines |
| 11968 | void ConsoleReporter::printHeaderString(std::string const &_string, std::size_t indent) { |
| 11969 | std::size_t i = _string.find(": "); |
| 11970 | if (i != std::string::npos) |
| 11971 | i += 2; |
| 11972 | else |
| 11973 | i = 0; |
| 11974 | stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; |
| 11975 | } |
| 11976 | |
| 11977 | struct SummaryColumn { |
| 11978 |
nothing calls this directly
no test coverage detected