if string has a : in first line will set indent to follow it on subsequent lines
| 10798 | // if string has a : in first line will set indent to follow it on |
| 10799 | // subsequent lines |
| 10800 | void printHeaderString( std::string const& _string, std::size_t indent = 0 ) { |
| 10801 | std::size_t i = _string.find( ": " ); |
| 10802 | if( i != std::string::npos ) |
| 10803 | i+=2; |
| 10804 | else |
| 10805 | i = 0; |
| 10806 | stream << Text( _string, TextAttributes() |
| 10807 | .setIndent( indent+i) |
| 10808 | .setInitialIndent( indent ) ) << '\n'; |
| 10809 | } |
| 10810 | |
| 10811 | struct SummaryColumn { |
| 10812 |
nothing calls this directly
no test coverage detected