| 9459 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 9460 | |
| 9461 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 9462 | std::vector<HelpColumns> cols; |
| 9463 | for (auto const &o : m_options) { |
| 9464 | auto childCols = o.getHelpColumns(); |
| 9465 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 9466 | } |
| 9467 | return cols; |
| 9468 | } |
| 9469 | |
| 9470 | void writeToStream( std::ostream &os ) const { |
| 9471 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected