if string has a : in first line will set indent to follow it on subsequent lines
| 16670 | // if string has a : in first line will set indent to follow it on |
| 16671 | // subsequent lines |
| 16672 | void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) { |
| 16673 | std::size_t i = _string.find(": "); |
| 16674 | if (i != std::string::npos) |
| 16675 | i += 2; |
| 16676 | else |
| 16677 | i = 0; |
| 16678 | stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; |
| 16679 | } |
| 16680 | |
| 16681 | struct SummaryColumn { |
| 16682 |
nothing calls this directly
no test coverage detected