| 7412 | auto operator+=( T const &other ) -> Parser & { return operator|=( other ); } |
| 7413 | template<typename T> |
| 7414 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 7415 | |
| 7416 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 7417 | std::vector<HelpColumns> cols; |
nothing calls this directly
no outgoing calls
no test coverage detected