if string has a : in first line will set indent to follow it on subsequent lines
| 15830 | // if string has a : in first line will set indent to follow it on |
| 15831 | // subsequent lines |
| 15832 | void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) { |
| 15833 | std::size_t i = _string.find(": "); |
| 15834 | if (i != std::string::npos) |
| 15835 | i += 2; |
| 15836 | else |
| 15837 | i = 0; |
| 15838 | stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; |
| 15839 | } |
| 15840 | |
| 15841 | struct SummaryColumn { |
| 15842 |
nothing calls this directly
no test coverage detected