| 690 | } |
| 691 | |
| 692 | bool cmDocumentation::PrintHelpListGenerators(std::ostream& os) |
| 693 | { |
| 694 | auto const si = this->AllSections.find("Generators"); |
| 695 | if (si != this->AllSections.end()) { |
| 696 | this->Formatter.PrintSection(os, si->second); |
| 697 | } |
| 698 | return true; |
| 699 | } |
| 700 | |
| 701 | bool cmDocumentation::PrintHelpOneVariable(std::ostream& os) |
| 702 | { |
no test coverage detected