| 5990 | } |
| 5991 | |
| 5992 | auto isMatch(std::string const &optToken) const -> bool { |
| 5993 | auto normalisedToken = normaliseOpt(optToken); |
| 5994 | for (auto const &name : m_optNames) { |
| 5995 | if (normaliseOpt(name) == normalisedToken) |
| 5996 | return true; |
| 5997 | } |
| 5998 | return false; |
| 5999 | } |
| 6000 | |
| 6001 | using ParserBase::parse; |
| 6002 |
nothing calls this directly
no test coverage detected