| 6186 | } |
| 6187 | |
| 6188 | auto isMatch( std::string const &optToken ) const -> bool { |
| 6189 | auto normalisedToken = normaliseOpt( optToken ); |
| 6190 | for( auto const &name : m_optNames ) { |
| 6191 | if( normaliseOpt( name ) == normalisedToken ) |
| 6192 | return true; |
| 6193 | } |
| 6194 | return false; |
| 6195 | } |
| 6196 | |
| 6197 | using ParserBase::parse; |
| 6198 |
nothing calls this directly
no test coverage detected