| 818 | |
| 819 | template <typename CHAR, typename NEXT> |
| 820 | static void EatWildcard(const CHAR** pattern, const CHAR* end, NEXT next) { |
| 821 | while (*pattern != end) { |
| 822 | if (!IsWildcard(**pattern)) |
| 823 | return; |
| 824 | next(pattern, end); |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | template <typename CHAR, typename NEXT> |
| 829 | static bool MatchPatternT(const CHAR* eval, const CHAR* eval_end, |
no test coverage detected