| 90 | |
| 91 | template<std::size_t N> |
| 92 | static bool isVarTokComparison(const Token * tok, const Token ** vartok, |
| 93 | const std::array<std::pair<std::string, std::string>, N>& ops) |
| 94 | { |
| 95 | return std::any_of(ops.cbegin(), ops.cend(), [&](const std::pair<std::string, std::string>& op) { |
| 96 | return astIsVariableComparison(tok, op.first, op.second, vartok); |
| 97 | }); |
| 98 | } |
| 99 | |
| 100 | //--------------------------------------------------------------------------- |
| 101 |
no test coverage detected