| 7516 | } |
| 7517 | |
| 7518 | auto isMatch( std::string const &optToken ) const -> bool { |
| 7519 | auto normalisedToken = normaliseOpt( optToken ); |
| 7520 | for( auto const &name : m_optNames ) { |
| 7521 | if( normaliseOpt( name ) == normalisedToken ) |
| 7522 | return true; |
| 7523 | } |
| 7524 | return false; |
| 7525 | } |
| 7526 | |
| 7527 | using ParserBase::parse; |
| 7528 |
nothing calls this directly
no test coverage detected