| 718 | } |
| 719 | |
| 720 | bool cmDocumentation::PrintUsage(std::ostream& os) |
| 721 | { |
| 722 | auto const si = this->AllSections.find("Usage"); |
| 723 | if (si != this->AllSections.end()) { |
| 724 | this->Formatter.PrintSection(os, si->second); |
| 725 | } |
| 726 | return true; |
| 727 | } |
| 728 | |
| 729 | bool cmDocumentation::PrintHelp(std::ostream& os) |
| 730 | { |
no test coverage detected