| 7297 | } |
| 7298 | |
| 7299 | auto isMatch( std::string const &optToken ) const -> bool { |
| 7300 | auto normalisedToken = normaliseOpt( optToken ); |
| 7301 | for( auto const &name : m_optNames ) { |
| 7302 | if( normaliseOpt( name ) == normalisedToken ) |
| 7303 | return true; |
| 7304 | } |
| 7305 | return false; |
| 7306 | } |
| 7307 | |
| 7308 | using ParserBase::parse; |
| 7309 |
nothing calls this directly
no test coverage detected