| 796 | } |
| 797 | |
| 798 | void Help(std::ostream& out) const override |
| 799 | { |
| 800 | if (!IsEnabled()) return; |
| 801 | out << " - " << Name(); |
| 802 | if (parameterDesc.empty()) |
| 803 | PrintDesc<Args...>::Dump(out); |
| 804 | for (auto& s: parameterDesc) |
| 805 | out << " <" << s << '>'; |
| 806 | out << "\n\t" << description << "\n"; |
| 807 | } |
| 808 | |
| 809 | private: |
| 810 |
nothing calls this directly
no outgoing calls
no test coverage detected