| 578 | } |
| 579 | |
| 580 | static void printCategoryListHeader(color_ostream& out) |
| 581 | { |
| 582 | // Output the header. |
| 583 | out.color(COLOR_GREEN); |
| 584 | out << std::setw(12) << "Plugin" |
| 585 | << std::setw(12) << "Category" |
| 586 | << std::setw(18) << "Lowest printed" << '\n'; |
| 587 | } |
| 588 | |
| 589 | static void printCategoryListEntry(color_ostream& out, |
| 590 | unsigned& line, |
no test coverage detected