| 7277 | Opt( T &ref, std::string const &hint ) : ParserRefImpl( ref, hint ) {} |
| 7278 | |
| 7279 | auto operator[]( std::string const &optName ) -> Opt & { |
| 7280 | m_optNames.push_back( optName ); |
| 7281 | return *this; |
| 7282 | } |
| 7283 | |
| 7284 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 7285 | std::ostringstream oss; |
nothing calls this directly
no outgoing calls
no test coverage detected